diff options
author | Lioncash <mathew1800@gmail.com> | 2018-09-20 19:28:48 -0400 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2018-09-20 19:35:36 -0400 |
commit | 9b8fc2b68989ef44ab76c4b1e9120d08d70f31f8 (patch) | |
tree | d66b8a51902f3f84938e2879709de30b5a642988 /src/yuzu/debugger/wait_tree.cpp | |
parent | f2372651879dd6682165487b34a70f33357e730a (diff) |
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/yuzu/debugger/wait_tree.cpp')
-rw-r--r-- | src/yuzu/debugger/wait_tree.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/yuzu/debugger/wait_tree.cpp b/src/yuzu/debugger/wait_tree.cpp index f2a7e23f0..a3b1fd357 100644 --- a/src/yuzu/debugger/wait_tree.cpp +++ b/src/yuzu/debugger/wait_tree.cpp @@ -15,6 +15,7 @@ #include "core/hle/kernel/thread.h" #include "core/hle/kernel/timer.h" #include "core/hle/kernel/wait_object.h" +#include "core/memory.h" WaitTreeItem::WaitTreeItem() = default; WaitTreeItem::~WaitTreeItem() = default; |