mirror of
https://github.com/twisterarmy/twister-core.git
synced 2025-02-08 21:04:14 +00:00
fix boost-1.67 build
This commit is contained in:
parent
53ffd95805
commit
19364110b5
@ -40,8 +40,14 @@ POSSIBILITY OF SUCH DAMAGE.
|
|||||||
#pragma warning(push, 1)
|
#pragma warning(push, 1)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include <boost/limits.hpp>
|
#include <boost/version.hpp>
|
||||||
|
#if BOOST_VERSION >= 106700
|
||||||
|
#include <boost/next_prior.hpp>
|
||||||
|
#else
|
||||||
#include <boost/utility.hpp>
|
#include <boost/utility.hpp>
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#include <boost/limits.hpp>
|
||||||
#include <boost/tuple/tuple.hpp>
|
#include <boost/tuple/tuple.hpp>
|
||||||
|
|
||||||
#ifdef _MSC_VER
|
#ifdef _MSC_VER
|
||||||
@ -312,4 +318,3 @@ private:
|
|||||||
}
|
}
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
@ -36,7 +36,13 @@ POSSIBILITY OF SUCH DAMAGE.
|
|||||||
#include <vector>
|
#include <vector>
|
||||||
#include <boost/cstdint.hpp>
|
#include <boost/cstdint.hpp>
|
||||||
|
|
||||||
|
#include <boost/version.hpp>
|
||||||
|
#if BOOST_VERSION >= 106700
|
||||||
|
#include <boost/next_prior.hpp>
|
||||||
|
#else
|
||||||
#include <boost/utility.hpp>
|
#include <boost/utility.hpp>
|
||||||
|
#endif
|
||||||
|
|
||||||
#include <boost/tuple/tuple.hpp>
|
#include <boost/tuple/tuple.hpp>
|
||||||
#include <boost/array.hpp>
|
#include <boost/array.hpp>
|
||||||
#include <set>
|
#include <set>
|
||||||
@ -220,4 +226,3 @@ private:
|
|||||||
} } // namespace libtorrent::dht
|
} } // namespace libtorrent::dht
|
||||||
|
|
||||||
#endif // ROUTING_TABLE_HPP
|
#endif // ROUTING_TABLE_HPP
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user