diff options
author | archshift <admin@archshift.com> | 2014-09-02 22:05:45 -0700 |
---|---|---|
committer | archshift <admin@archshift.com> | 2014-09-07 14:31:07 -0700 |
commit | 498d1a37f16d36b0c6341b074e5390a9194567a7 (patch) | |
tree | adbf248d2b6d18e475f2d5390ff8ed7d37b6a877 /src/common/thread.h | |
parent | 5d95d038a0e5d203a568223da12b57c30d048a8c (diff) |
Removed common/std_xyz, instead using the std header
Diffstat (limited to 'src/common/thread.h')
-rw-r--r-- | src/common/thread.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/common/thread.h b/src/common/thread.h index dbb9da53b6..f7ace21b4a 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 |