aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/common/thread.h
diff options
context:
space:
mode:
authorGravatar archshift <admin@archshift.com>2014-09-02 22:05:45 -0700
committerGravatar archshift <admin@archshift.com>2014-09-07 14:31:07 -0700
commit498d1a37f16d36b0c6341b074e5390a9194567a7 (patch)
treeadbf248d2b6d18e475f2d5390ff8ed7d37b6a877 /src/common/thread.h
parent5d95d038a0e5d203a568223da12b57c30d048a8c (diff)
Removed common/std_xyz, instead using the std header
Diffstat (limited to 'src/common/thread.h')
-rw-r--r--src/common/thread.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/common/thread.h b/src/common/thread.h
index dbb9da53..f7ace21b 100644
--- a/src/common/thread.h
+++ b/src/common/thread.h
@@ -4,14 +4,13 @@
#pragma once
-#include "common/std_condition_variable.h"
-#include "common/std_mutex.h"
-#include "common/std_thread.h"
-
// Don't include common.h here as it will break LogManager
#include "common/common_types.h"
#include <cstdio>
#include <cstring>
+#include <thread>
+#include <condition_variable>
+#include <mutex>
// This may not be defined outside _WIN32
#ifndef _WIN32