mirror of
https://github.com/vdemydiuk/mtapi.git
synced 2026-08-05 06:57:46 +00:00
Added thirdparty: boost library
This commit is contained in:
+27
@@ -0,0 +1,27 @@
|
||||
// (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
|
||||
Reference in New Issue
Block a user