summaryrefslogtreecommitdiff
path: root/src/core/hle/kernel/mutex.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/mutex.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/mutex.cpp')
-rw-r--r--src/core/hle/kernel/mutex.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/core/hle/kernel/mutex.cpp b/src/core/hle/kernel/mutex.cpp
index feb7b88d2..d6b12f9aa 100644
--- a/src/core/hle/kernel/mutex.cpp
+++ b/src/core/hle/kernel/mutex.cpp
@@ -3,8 +3,11 @@
3// Refer to the license.txt file included. 3// Refer to the license.txt file included.
4 4
5#include <map> 5#include <map>
6#include <utility>
6#include <vector> 7#include <vector>
8
7#include <boost/range/algorithm_ext/erase.hpp> 9#include <boost/range/algorithm_ext/erase.hpp>
10
8#include "common/assert.h" 11#include "common/assert.h"
9#include "core/core.h" 12#include "core/core.h"
10#include "core/hle/kernel/errors.h" 13#include "core/hle/kernel/errors.h"
@@ -13,6 +16,7 @@
13#include "core/hle/kernel/mutex.h" 16#include "core/hle/kernel/mutex.h"
14#include "core/hle/kernel/object_address_table.h" 17#include "core/hle/kernel/object_address_table.h"
15#include "core/hle/kernel/thread.h" 18#include "core/hle/kernel/thread.h"
19#include "core/hle/result.h"
16 20
17namespace Kernel { 21namespace Kernel {
18 22