]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/boost/math/tools/tuple.hpp
bump version to 18.2.4-pve3
[ceph.git] / ceph / src / boost / boost / math / tools / tuple.hpp
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
12 namespace boost{ namespace math{
13
14 using ::std::tuple;
15
16 // [6.1.3.2] Tuple creation functions
17 using ::std::ignore;
18 using ::std::make_tuple;
19 using ::std::tie;
20 using ::std::get;
21
22 // [6.1.3.3] Tuple helper classes
23 using ::std::tuple_size;
24 using ::std::tuple_element;
25
26 }}
27 #endif