temporarily removing boost

This commit is contained in:
Dynamitos
2021-11-18 12:48:21 +01:00
parent 42b0d5034c
commit f20ef8d1b1
11 changed files with 16 additions and 21 deletions
-1
View File
@@ -47,7 +47,6 @@ ThreadPool::~ThreadPool()
void ThreadPool::addJob(Job&& job)
{
std::unique_lock lock(jobQueueLock);
//std::cout << "Adding job " << job << std::endl;
jobQueue.add(std::move(job));
jobQueueCV.notify_one();
}