1// (C) Copyright John Maddock 2010.
2// Use, modification and distribution are subject to the
3// Boost Software License, Version 1.0. (See accompanying file
4// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
5
6#ifndef BOOST_MATH_TUPLE_HPP_INCLUDED
7#define BOOST_MATH_TUPLE_HPP_INCLUDED
8
9#include <boost/math/tools/cxx03_warn.hpp>
10#include <tuple>
11
12namespace boost{ namespace math{
13
14using ::std::tuple;
15
16// [6.1.3.2] Tuple creation functions
17using ::std::ignore;
18using ::std::make_tuple;
19using ::std::tie;
20using ::std::get;
21
22// [6.1.3.3] Tuple helper classes
23using ::std::tuple_size;
24using ::std::tuple_element;
25
26}}
27#endif
28

source code of include/boost/math/tools/tuple.hpp