replaced include pthread.h with <thread>

This commit is contained in:
gabime 2015-04-09 18:20:45 +03:00
parent e8a27a1cee
commit 3ee728d11b
1 changed files with 1 additions and 1 deletions

View File

@ -36,7 +36,7 @@
#include <sys/syscall.h> //Use gettid() syscall under linux to get thread id
#include <unistd.h>
#else
#include <pthread.h>
#include <thread>
#endif
#include "../common.h"