summaryrefslogtreecommitdiff
path: root/src/core/hle/kernel/mutex.cpp
diff options
context:
space:
mode:
authorGravatar Lioncash2018-09-20 19:28:48 -0400
committerGravatar Lioncash2018-09-20 19:35:36 -0400
commit9b8fc2b68989ef44ab76c4b1e9120d08d70f31f8 (patch)
treed66b8a51902f3f84938e2879709de30b5a642988 /src/core/hle/kernel/mutex.cpp
parentMerge pull request #1370 from Hedges/GDBClean (diff)
downloadyuzu-9b8fc2b68989ef44ab76c4b1e9120d08d70f31f8.tar.gz
yuzu-9b8fc2b68989ef44ab76c4b1e9120d08d70f31f8.tar.xz
yuzu-9b8fc2b68989ef44ab76c4b1e9120d08d70f31f8.zip
arm_interface: Replace kernel vm_manager include with a forward declaration
Avoids an unnecessary inclusion and also uncovers three places where indirect inclusions were relied upon, which allows us to also resolve those.
Diffstat (limited to 'src/core/hle/kernel/mutex.cpp')
-rw-r--r--src/core/hle/kernel/mutex.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/core/hle/kernel/mutex.cpp b/src/core/hle/kernel/mutex.cpp
index 51f4544be..81675eac5 100644
--- a/src/core/hle/kernel/mutex.cpp
+++ b/src/core/hle/kernel/mutex.cpp
@@ -16,6 +16,7 @@
16#include "core/hle/kernel/object.h" 16#include "core/hle/kernel/object.h"
17#include "core/hle/kernel/thread.h" 17#include "core/hle/kernel/thread.h"
18#include "core/hle/result.h" 18#include "core/hle/result.h"
19#include "core/memory.h"
19 20
20namespace Kernel { 21namespace Kernel {
21 22