summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar Lioncash2019-03-21 09:48:52 -0400
committerGravatar Lioncash2019-03-21 09:48:54 -0400
commitc221308a6609b14882cc33bb95e260b4d7b21538 (patch)
tree9fbc60a1c8566fde950c83a97dc540ce2a962d52 /src
parentMerge pull request #2260 from lioncash/sdl (diff)
downloadyuzu-c221308a6609b14882cc33bb95e260b4d7b21538.tar.gz
yuzu-c221308a6609b14882cc33bb95e260b4d7b21538.tar.xz
yuzu-c221308a6609b14882cc33bb95e260b4d7b21538.zip
core/memory: Remove unnecessary includes
In 93da8e0abfcdcc6e3cb5488a0db12373429f1377, the page table construct was moved to the common library (which utilized these inclusions). Since the move, nothing requires these headers to be included within the memory header.
Diffstat (limited to 'src')
-rw-r--r--src/core/memory.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/core/memory.h b/src/core/memory.h
index 3f60d868c..1d38cdca8 100644
--- a/src/core/memory.h
+++ b/src/core/memory.h
@@ -6,9 +6,6 @@
6 6
7#include <cstddef> 7#include <cstddef>
8#include <string> 8#include <string>
9#include <tuple>
10#include <vector>
11#include <boost/icl/interval_map.hpp>
12#include "common/common_types.h" 9#include "common/common_types.h"
13 10
14namespace Common { 11namespace Common {