GameTracker: use WorkQueueThread

This commit is contained in:
Michael M
2017-08-20 14:06:33 -07:00
parent de9378bf63
commit 8c13e0230c
3 changed files with 9 additions and 40 deletions

View File

@ -35,7 +35,7 @@ public:
{
{
std::unique_lock<std::mutex> lg(m_lock);
m_items.emplace(std::move(args)...);
m_items.emplace(std::forward<Args>(args)...);
}
m_wakeup.Set();
}