From a044e70b3a00788f4fbebb28ca728beff7c9459b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dhiego=20Cassiano=20Foga=C3=A7a=20Barbosa?= Date: Fri, 16 Feb 2018 19:52:51 -0200 Subject: [PATCH] Updated preprocessor condition Without >=, the patch would not work on newer versions of Boost --- src/anbox/runtime.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/anbox/runtime.cpp b/src/anbox/runtime.cpp index d7e9706..90c6768 100644 --- a/src/anbox/runtime.cpp +++ b/src/anbox/runtime.cpp @@ -54,7 +54,7 @@ std::shared_ptr 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(pool_size_)}, #else service_{pool_size_},