diff options
author | bunnei <bunneidev@gmail.com> | 2014-09-08 04:08:06 +0200 |
---|---|---|
committer | bunnei <bunneidev@gmail.com> | 2014-09-08 04:08:06 +0200 |
commit | 85f1b76cd8a223968d61fbd93235acee5dcab47e (patch) | |
tree | 8b062c49cd6b6d34e39e4ad79005815e5c694c73 /src/common/thread.h | |
parent | Merge pull request #93 from lioncash/ref (diff) | |
parent | Removed common/std_xyz, instead using the std header (diff) | |
download | yuzu-85f1b76cd8a223968d61fbd93235acee5dcab47e.tar yuzu-85f1b76cd8a223968d61fbd93235acee5dcab47e.tar.gz yuzu-85f1b76cd8a223968d61fbd93235acee5dcab47e.tar.bz2 yuzu-85f1b76cd8a223968d61fbd93235acee5dcab47e.tar.lz yuzu-85f1b76cd8a223968d61fbd93235acee5dcab47e.tar.xz yuzu-85f1b76cd8a223968d61fbd93235acee5dcab47e.tar.zst yuzu-85f1b76cd8a223968d61fbd93235acee5dcab47e.zip |
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 dbb9da53b..f7ace21b4 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 |