summaryrefslogtreecommitdiff
path: root/src/common/thread.h
diff options
context:
space:
mode:
authorGravatar archshift2014-09-02 22:05:45 -0700
committerGravatar archshift2014-09-07 14:31:07 -0700
commit498d1a37f16d36b0c6341b074e5390a9194567a7 (patch)
treeadbf248d2b6d18e475f2d5390ff8ed7d37b6a877 /src/common/thread.h
parentMerge pull request #88 from archshift/remove-atomic (diff)
downloadyuzu-498d1a37f16d36b0c6341b074e5390a9194567a7.tar.gz
yuzu-498d1a37f16d36b0c6341b074e5390a9194567a7.tar.xz
yuzu-498d1a37f16d36b0c6341b074e5390a9194567a7.zip
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 dbb9da53b..f7ace21b4 100644
--- a/src/common/thread.h
+++ b/src/common/thread.h
@@ -4,14 +4,13 @@
4 4
5#pragma once 5#pragma once
6 6
7#include "common/std_condition_variable.h"
8#include "common/std_mutex.h"
9#include "common/std_thread.h"
10
11// Don't include common.h here as it will break LogManager 7// Don't include common.h here as it will break LogManager
12#include "common/common_types.h" 8#include "common/common_types.h"
13#include <cstdio> 9#include <cstdio>
14#include <cstring> 10#include <cstring>
11#include <thread>
12#include <condition_variable>
13#include <mutex>
15 14
16// This may not be defined outside _WIN32 15// This may not be defined outside _WIN32
17#ifndef _WIN32 16#ifndef _WIN32