forked from boostorg/tuple
Fixes Ticket #12064
This commit is contained in:
@ -35,11 +35,11 @@
|
|||||||
|
|
||||||
#include <utility> // needed for the assignment from pair to tuple
|
#include <utility> // needed for the assignment from pair to tuple
|
||||||
|
|
||||||
#include "boost/type_traits/cv_traits.hpp"
|
#include <boost/type_traits/cv_traits.hpp>
|
||||||
#include "boost/type_traits/function_traits.hpp"
|
#include <boost/type_traits/function_traits.hpp>
|
||||||
#include "boost/utility/swap.hpp"
|
#include <boost/utility/swap.hpp>
|
||||||
|
|
||||||
#include "boost/detail/workaround.hpp" // needed for BOOST_WORKAROUND
|
#include <boost/detail/workaround.hpp> // needed for BOOST_WORKAROUND
|
||||||
|
|
||||||
#if defined(BOOST_GCC) && (BOOST_GCC >= 40700)
|
#if defined(BOOST_GCC) && (BOOST_GCC >= 40700)
|
||||||
#pragma GCC diagnostic push
|
#pragma GCC diagnostic push
|
||||||
@ -985,5 +985,3 @@ inline void swap(tuple<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9>& lhs,
|
|||||||
|
|
||||||
|
|
||||||
#endif // BOOST_TUPLE_BASIC_HPP
|
#endif // BOOST_TUPLE_BASIC_HPP
|
||||||
|
|
||||||
|
|
||||||
|
@ -20,12 +20,12 @@
|
|||||||
namespace boost { namespace python { class tuple; }}
|
namespace boost { namespace python { class tuple; }}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include "boost/config.hpp"
|
#include <boost/config.hpp>
|
||||||
#include "boost/static_assert.hpp"
|
#include <boost/static_assert.hpp>
|
||||||
|
|
||||||
// other compilers
|
// other compilers
|
||||||
#include "boost/ref.hpp"
|
#include <boost/ref.hpp>
|
||||||
#include "boost/tuple/detail/tuple_basic.hpp"
|
#include <boost/tuple/detail/tuple_basic.hpp>
|
||||||
|
|
||||||
|
|
||||||
namespace boost {
|
namespace boost {
|
||||||
|
@ -16,7 +16,7 @@
|
|||||||
#ifndef BOOST_TUPLE_COMPARISON_HPP
|
#ifndef BOOST_TUPLE_COMPARISON_HPP
|
||||||
#define BOOST_TUPLE_COMPARISON_HPP
|
#define BOOST_TUPLE_COMPARISON_HPP
|
||||||
|
|
||||||
#include "boost/tuple/tuple.hpp"
|
#include <boost/tuple/tuple.hpp>
|
||||||
|
|
||||||
// -------------------------------------------------------------
|
// -------------------------------------------------------------
|
||||||
// equality and comparison operators
|
// equality and comparison operators
|
||||||
|
@ -18,7 +18,7 @@
|
|||||||
|
|
||||||
#include <sstream>
|
#include <sstream>
|
||||||
|
|
||||||
#include "boost/tuple/tuple.hpp"
|
#include <boost/tuple/tuple.hpp>
|
||||||
|
|
||||||
// This is ugly: one should be using twoargument isspace since whitspace can
|
// This is ugly: one should be using twoargument isspace since whitspace can
|
||||||
// be locale dependent, in theory at least.
|
// be locale dependent, in theory at least.
|
||||||
@ -337,5 +337,3 @@ operator>>(std::basic_istream<CharType, CharTrait>& is, cons<T1, T2>& t1) {
|
|||||||
} // end of namespace boost
|
} // end of namespace boost
|
||||||
|
|
||||||
#endif // BOOST_TUPLE_IO_HPP
|
#endif // BOOST_TUPLE_IO_HPP
|
||||||
|
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user