removal of using namespace std from theadFiles

This commit is contained in:
Erik Frojdh
2018-05-24 14:47:45 +02:00
parent b78b8425fd
commit 212218396a
16 changed files with 21 additions and 28 deletions

View File

@ -1,6 +1,6 @@
#include "ThreadPool.h"
#include <pthread.h>
using namespace std;
ThreadPool::ThreadPool(int pool_size) : m_pool_size(pool_size){
#ifdef VERBOSE
cout << "Constructed ThreadPool of size " << m_pool_size << endl;