Updated preprocessor condition
Without >=, the patch would not work on newer versions of Boost
This commit is contained in:
parent
8b74034a17
commit
a044e70b3a
1 changed files with 1 additions and 1 deletions
|
|
@ -54,7 +54,7 @@ std::shared_ptr<Runtime> Runtime::create(std::uint32_t pool_size) {
|
|||
Runtime::Runtime(std::uint32_t pool_size)
|
||||
: pool_size_{pool_size},
|
||||
|
||||
#if BOOST_VERSION == 106600
|
||||
#if BOOST_VERSION >= 106600
|
||||
service_{static_cast<int>(pool_size_)},
|
||||
#else
|
||||
service_{pool_size_},
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue