// (C) Copyright John Maddock 2010. // Use, modification and distribution are subject to 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 BOOST_MATH_TUPLE_HPP_INCLUDED #define BOOST_MATH_TUPLE_HPP_INCLUDED #include #include #include namespace boost{ namespace math{ using ::std::tuple; // [6.1.3.2] Tuple creation functions using ::std::ignore; using ::std::make_tuple; using ::std::tie; using ::std::get; // [6.1.3.3] Tuple helper classes using ::std::tuple_size; using ::std::tuple_element; }} #endif