From b384f859c9002e9b190193b658e1a99276d87191 Mon Sep 17 00:00:00 2001 From: "Alexander A. Klimov" Date: Fri, 22 Feb 2019 15:07:59 +0100 Subject: [PATCH] Make IoEngine::m_CpuBoundSemaphore signed --- lib/base/io-engine.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/base/io-engine.hpp b/lib/base/io-engine.hpp index 05610ca6f..65059db68 100644 --- a/lib/base/io-engine.hpp +++ b/lib/base/io-engine.hpp @@ -102,7 +102,7 @@ private: boost::asio::io_service::work m_KeepAlive; std::vector m_Threads; boost::asio::deadline_timer m_AlreadyExpiredTimer; - std::atomic_uint_fast32_t m_CpuBoundSemaphore; + std::atomic_int_fast32_t m_CpuBoundSemaphore; }; class TerminateIoThread : public std::exception -- 2.40.0