From dd18675788987f22e7b3cd5eae2aefa63977109d Mon Sep 17 00:00:00 2001 From: Daniel Larimer Date: Sun, 11 Aug 2013 10:18:08 -0400 Subject: [PATCH] fix boost 1.54 support --- src/crypto/crc.cpp | 1 + src/thread/context.hpp | 3 +++ 2 files changed, 4 insertions(+) diff --git a/src/crypto/crc.cpp b/src/crypto/crc.cpp index 14fd41c..c749a9d 100644 --- a/src/crypto/crc.cpp +++ b/src/crypto/crc.cpp @@ -1,4 +1,5 @@ #include +#include //#include /* Tables generated with code like the following: diff --git a/src/thread/context.hpp b/src/thread/context.hpp index 01a220e..d7ac57e 100644 --- a/src/thread/context.hpp +++ b/src/thread/context.hpp @@ -8,6 +8,9 @@ #if BOOST_VERSION >= 105400 #include + #include + namespace bc = boost::context; + namespace bco = boost::coroutines; #elif BOOST_VERSION >= 105300 #include namespace bc = boost::context;