/*============================================================================= Copyright (c) 2011-2013 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_PAIR_MAKE_PAIR_HPP #define SPROUT_UTILITY_PAIR_MAKE_PAIR_HPP #include #include #include #include namespace sprout { // // make_pair // template inline SPROUT_CONSTEXPR sprout::pair< typename sprout::strip_reference::type>::type, typename sprout::strip_reference::type>::type > make_pair(T1&& x, T2&& y) { return sprout::pair< typename sprout::strip_reference::type>::type, typename sprout::strip_reference::type>::type >( sprout::forward(x), sprout::forward(y) ); } } // namespace sprout #endif // #ifndef SPROUT_UTILITY_PAIR_MAKE_PAIR_HPP