28 lines
641 B
C++
28 lines
641 B
C++
// (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/math/tools/cxx03_warn.hpp>
|
|
#include <tuple>
|
|
|
|
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
|