summaryrefslogtreecommitdiff
path: root/src/core/hle/kernel/thread.cpp
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.cpp
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.cpp')
-rw-r--r--src/core/hle/kernel/thread.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/core/hle/kernel/thread.cpp b/src/core/hle/kernel/thread.cpp
index 94735c86e..93ea58a1e 100644
--- a/src/core/hle/kernel/thread.cpp
+++ b/src/core/hle/kernel/thread.cpp
@@ -4,8 +4,11 @@
4 4
5#include <algorithm> 5#include <algorithm>
6#include <cinttypes> 6#include <cinttypes>
7#include <list>
8#include <vector> 7#include <vector>
8
9#include <boost/optional.hpp>
10#include <boost/range/algorithm_ext/erase.hpp>
11
9#include "common/assert.h" 12#include "common/assert.h"
10#include "common/common_types.h" 13#include "common/common_types.h"
11#include "common/logging/log.h" 14#include "common/logging/log.h"
@@ -19,7 +22,6 @@
19#include "core/hle/kernel/handle_table.h" 22#include "core/hle/kernel/handle_table.h"
20#include "core/hle/kernel/kernel.h" 23#include "core/hle/kernel/kernel.h"
21#include "core/hle/kernel/memory.h" 24#include "core/hle/kernel/memory.h"
22#include "core/hle/kernel/mutex.h"
23#include "core/hle/kernel/process.h" 25#include "core/hle/kernel/process.h"
24#include "core/hle/kernel/thread.h" 26#include "core/hle/kernel/thread.h"
25#include "core/hle/result.h" 27#include "core/hle/result.h"