fix boost 1.54 support
This commit is contained in:
parent
1a5fe49286
commit
dd18675788
2 changed files with 4 additions and 0 deletions
|
|
@ -1,4 +1,5 @@
|
|||
#include <stdint.h>
|
||||
#include <stdlib.h>
|
||||
//#include <zlib.h>
|
||||
/* Tables generated with code like the following:
|
||||
|
||||
|
|
|
|||
|
|
@ -8,6 +8,9 @@
|
|||
|
||||
#if BOOST_VERSION >= 105400
|
||||
#include <boost/coroutine/stack_context.hpp>
|
||||
#include <boost/coroutine/stack_allocator.hpp>
|
||||
namespace bc = boost::context;
|
||||
namespace bco = boost::coroutines;
|
||||
#elif BOOST_VERSION >= 105300
|
||||
#include <boost/coroutine/stack_allocator.hpp>
|
||||
namespace bc = boost::context;
|
||||
|
|
|
|||
Loading…
Reference in a new issue