1
0
Fork 0
mirror of https://github.com/bolero-MURAKAMI/Sprout synced 2024-11-12 21:09:01 +00:00
Sprout/sprout/utility/as_const.hpp

21 lines
397 B
C++
Raw Normal View History

2012-04-04 08:48:02 +00:00
#ifndef SPROUT_UTILITY_AS_CONST_HPP
#define SPROUT_UTILITY_AS_CONST_HPP
#include <sprout/config.hpp>
namespace sprout {
//
// as_const
//
template<typename T>
inline T const& as_const(T& t) {
return t;
}
template<typename T>
inline SPROUT_CONSTEXPR T const& as_const(T const& t) {
return t;
}
} // namespace sprout
#endif // #ifndef SPROUT_UTILITY_AS_CONST_HPP