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_lvalue.hpp
2012-07-07 14:58:46 +09:00

22 lines
418 B
C++

#ifndef SPROUT_UTILITY_AS_LVALUE_HPP
#define SPROUT_UTILITY_AS_LVALUE_HPP
#include <sprout/config.hpp>
namespace sprout {
//
// as_lvalue
//
template<typename T>
inline SPROUT_CONSTEXPR T&
as_lvalue(T& t) {
return t;
}
template<typename T>
inline SPROUT_CONSTEXPR T const&
as_lvalue(T const& t) {
return t;
}
} // namespace sprout
#endif // #ifndef SPROUT_UTILITY_AS_LVALUE_HPP