Updated preprocessor condition

Without >=, the patch would not work on newer versions of Boost
This commit is contained in:
Dhiego Cassiano Fogaça Barbosa 2018-02-16 19:52:51 -02:00 committed by GitHub
commit a044e70b3a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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_},