/*============================================================================= Copyright (c) 2011-2015 Bolero MURAKAMI 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) =============================================================================*/ #ifndef SPROUT_UTILITY_AS_CONST_HPP #define SPROUT_UTILITY_AS_CONST_HPP #include #include #include namespace sprout { // // as_const // template inline SPROUT_CONSTEXPR typename std::conditional< std::is_lvalue_reference::value, typename std::remove_reference::type const&, typename std::remove_reference::type const&& >::type as_const(T&& t) { return SPROUT_FORWARD(T, t); } } // namespace sprout #endif // #ifndef SPROUT_UTILITY_AS_CONST_HPP