Sprout/sprout/utility/as_lvalue.hpp

30 lines
823 B
C++
Raw Normal View History

2013-08-08 09:54:33 +00:00
/*=============================================================================
2014-01-08 07:48:12 +00:00
Copyright (c) 2011-2014 Bolero MURAKAMI
2013-08-08 09:54:33 +00:00
https://github.com/bolero-MURAKAMI/Sprout
Distributed under the Boost Software License, Version 1.0. (See accompanying
file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
=============================================================================*/
2012-04-05 05:54:23 +00:00
#ifndef SPROUT_UTILITY_AS_LVALUE_HPP
#define SPROUT_UTILITY_AS_LVALUE_HPP
#include <sprout/config.hpp>
namespace sprout {
//
// as_lvalue
//
template<typename T>
2012-07-07 05:58:46 +00:00
inline SPROUT_CONSTEXPR T&
as_lvalue(T& t) {
2012-04-05 05:54:23 +00:00
return t;
}
template<typename T>
2012-07-07 05:58:46 +00:00
inline SPROUT_CONSTEXPR T const&
as_lvalue(T const& t) {
2012-04-05 05:54:23 +00:00
return t;
}
} // namespace sprout
#endif // #ifndef SPROUT_UTILITY_AS_LVALUE_HPP