aboutsummaryrefslogtreecommitdiff
path: root/src/core/hle/kernel/memory.cpp
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2018-07-31 08:06:09 -0400
committerLioncash <mathew1800@gmail.com>2018-07-31 10:15:17 -0400
commita2304fad16d7a89741241ca8215a21bd02cce5e7 (patch)
treeb7fc29c08a4534090b39427c6709f1391147adab /src/core/hle/kernel/memory.cpp
parentbf9c62bc76a2296c1a81cfc1b83aaf4028578901 (diff)
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/memory.cpp')
-rw-r--r--src/core/hle/kernel/memory.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/core/hle/kernel/memory.cpp b/src/core/hle/kernel/memory.cpp
index 94eac677c..a7f3c3c5a 100644
--- a/src/core/hle/kernel/memory.cpp
+++ b/src/core/hle/kernel/memory.cpp
@@ -4,7 +4,6 @@
#include <algorithm>
#include <cinttypes>
-#include <map>
#include <memory>
#include <utility>
#include <vector>
@@ -12,10 +11,9 @@
#include "common/common_types.h"
#include "common/logging/log.h"
#include "core/hle/kernel/memory.h"
+#include "core/hle/kernel/process.h"
#include "core/hle/kernel/vm_manager.h"
-#include "core/hle/result.h"
#include "core/memory.h"
-#include "core/memory_setup.h"
////////////////////////////////////////////////////////////////////////////////////////////////////