Make IoEngine::m_CpuBoundSemaphore signed

This commit is contained in:
Alexander A. Klimov 2019-02-22 15:07:59 +01:00
parent 326bf66255
commit b384f859c9
1 changed files with 1 additions and 1 deletions

View File

@ -102,7 +102,7 @@ private:
boost::asio::io_service::work m_KeepAlive;
std::vector<std::thread> 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