#ifndef SPROUT_BREED_DETAIL_AS_LVALUE_HPP #define SPROUT_BREED_DETAIL_AS_LVALUE_HPP #include #include namespace sprout { namespace breed { namespace detail { template inline SPROUT_CONSTEXPR T& as_lvalue(T& t) { return t; } template inline SPROUT_CONSTEXPR T const& as_lvalue(T const& t) { return t; } } // namespace detail } // namespace breed } // namespace sprout #endif // #ifndef SPROUT_BREED_DETAIL_AS_LVALUE_HPP