123456789101112131415161718192021222324252627 |
- #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;
- using ::std::ignore;
- using ::std::make_tuple;
- using ::std::tie;
- using ::std::get;
- using ::std::tuple_size;
- using ::std::tuple_element;
- }}
- #endif
|