| 123456789101112131415161718192021222324252627 | //  (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 <boost/config.hpp>#include <boost/math/tools/cxx03_warn.hpp>#include <tuple>namespace boost{ namespace math{using ::std::tuple;// [6.1.3.2] Tuple creation functionsusing ::std::ignore;using ::std::make_tuple;using ::std::tie;using ::std::get;// [6.1.3.3] Tuple helper classesusing ::std::tuple_size;using ::std::tuple_element;}}#endif
 |