summaryrefslogtreecommitdiffstats
path: root/src/common/thread.h
diff options
context:
space:
mode:
authorarchshift <admin@archshift.com>2014-09-03 07:05:45 +0200
committerarchshift <admin@archshift.com>2014-09-07 23:31:07 +0200
commit498d1a37f16d36b0c6341b074e5390a9194567a7 (patch)
treeadbf248d2b6d18e475f2d5390ff8ed7d37b6a877 /src/common/thread.h
parentMerge pull request #88 from archshift/remove-atomic (diff)
downloadyuzu-498d1a37f16d36b0c6341b074e5390a9194567a7.tar
yuzu-498d1a37f16d36b0c6341b074e5390a9194567a7.tar.gz
yuzu-498d1a37f16d36b0c6341b074e5390a9194567a7.tar.bz2
yuzu-498d1a37f16d36b0c6341b074e5390a9194567a7.tar.lz
yuzu-498d1a37f16d36b0c6341b074e5390a9194567a7.tar.xz
yuzu-498d1a37f16d36b0c6341b074e5390a9194567a7.tar.zst
yuzu-498d1a37f16d36b0c6341b074e5390a9194567a7.zip
Diffstat (limited to '')
-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 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