Core: Fix warning

This commit is contained in:
Vincent-Michael
2014-09-12 19:51:29 +02:00
parent 6dff6b7425
commit 53ee1eff0b

View File

@@ -111,11 +111,12 @@ public:
void QueuePacket(MessageBuffer&& buffer, std::unique_lock<std::mutex>& guard)
{
_writeQueue.push(std::move(buffer));
#ifdef BOOST_ASIO_HAS_IOCP
AsyncProcessQueue(guard);
#else
(void)guard;
#endif
}