From 9cd0ae67e74a507c1b9ff9c057ee97dda38ccb81 Mon Sep 17 00:00:00 2001 From: arvidn Date: Fri, 13 Apr 2018 08:42:39 +0200 Subject: [PATCH] another boost-1.67 build fix --- src/kademlia/routing_table.cpp | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/kademlia/routing_table.cpp b/src/kademlia/routing_table.cpp index a23500b69..dfc350093 100644 --- a/src/kademlia/routing_table.cpp +++ b/src/kademlia/routing_table.cpp @@ -54,6 +54,13 @@ POSSIBILITY OF SUCH DAMAGE. #include #include +#include +#if BOOST_VERSION >= 106700 +#include +#else +#include +#endif + #include "libtorrent/aux_/disable_warnings_pop.hpp" using boost::uint8_t;