/*============================================================================= Copyright (c) 2011-2017 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 TESTSPR_UTILITY_HPP #define TESTSPR_UTILITY_HPP #include #include #include #include namespace testspr { // // 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); } // // as_non_const // template inline SPROUT_CONSTEXPR typename std::conditional< std::is_lvalue_reference::value, typename std::remove_const::type>::type&, typename std::remove_const::type>::type&& >::type as_non_const(T&& t) { typedef typename std::conditional< std::is_lvalue_reference::value, typename std::remove_const::type>::type&, typename std::remove_const::type>::type&& >::type type; return const_cast(t); } } // namespace testspr #endif // #ifndef TESTSPR_UTILITY_HPP