summaryrefslogtreecommitdiff
path: root/src/core/hle/kernel/thread.h
diff options
context:
space:
mode:
authorGravatar Lioncash2018-07-31 08:06:09 -0400
committerGravatar Lioncash2018-07-31 10:15:17 -0400
commita2304fad16d7a89741241ca8215a21bd02cce5e7 (patch)
treeb7fc29c08a4534090b39427c6709f1391147adab /src/core/hle/kernel/thread.h
parentMerge pull request #855 from bunnei/cubeb (diff)
downloadyuzu-a2304fad16d7a89741241ca8215a21bd02cce5e7.tar.gz
yuzu-a2304fad16d7a89741241ca8215a21bd02cce5e7.tar.xz
yuzu-a2304fad16d7a89741241ca8215a21bd02cce5e7.zip
kernel: Remove unnecessary includes
Removes unnecessary direct dependencies in some headers and also gets rid of indirect dependencies that were being relied on to be included.
Diffstat (limited to 'src/core/hle/kernel/thread.h')
-rw-r--r--src/core/hle/kernel/thread.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/core/hle/kernel/thread.h b/src/core/hle/kernel/thread.h
index 6218960d2..a456745a1 100644
--- a/src/core/hle/kernel/thread.h
+++ b/src/core/hle/kernel/thread.h
@@ -4,12 +4,11 @@
4 4
5#pragma once 5#pragma once
6 6
7#include <functional>
7#include <memory> 8#include <memory>
8#include <string> 9#include <string>
9#include <unordered_map>
10#include <vector> 10#include <vector>
11#include <boost/container/flat_map.hpp> 11
12#include <boost/container/flat_set.hpp>
13#include "common/common_types.h" 12#include "common/common_types.h"
14#include "core/arm/arm_interface.h" 13#include "core/arm/arm_interface.h"
15#include "core/hle/kernel/kernel.h" 14#include "core/hle/kernel/kernel.h"