summaryrefslogtreecommitdiff
path: root/src/core/memory.cpp
diff options
context:
space:
mode:
authorGravatar bunnei2020-03-31 15:10:44 -0400
committerGravatar bunnei2020-04-17 00:59:28 -0400
commit4caff51710a793c6c2c1069ddd6e92185aa731fe (patch)
tree9770a5cdbfc40f6bddab093d5010f80ddad5bd26 /src/core/memory.cpp
parentcommon: alignment: Add a helper function for generic alignment checking. (diff)
downloadyuzu-4caff51710a793c6c2c1069ddd6e92185aa731fe.tar.gz
yuzu-4caff51710a793c6c2c1069ddd6e92185aa731fe.tar.xz
yuzu-4caff51710a793c6c2c1069ddd6e92185aa731fe.zip
core: memory: Move to Core::Memory namespace.
- helpful to disambiguate Kernel::Memory namespace.
Diffstat (limited to 'src/core/memory.cpp')
-rw-r--r--src/core/memory.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/memory.cpp b/src/core/memory.cpp
index 6061d37ae..72d1caf73 100644
--- a/src/core/memory.cpp
+++ b/src/core/memory.cpp
@@ -20,7 +20,7 @@
20#include "core/memory.h" 20#include "core/memory.h"
21#include "video_core/gpu.h" 21#include "video_core/gpu.h"
22 22
23namespace Memory { 23namespace Core::Memory {
24 24
25// Implementation class used to keep the specifics of the memory subsystem hidden 25// Implementation class used to keep the specifics of the memory subsystem hidden
26// from outside classes. This also allows modification to the internals of the memory 26// from outside classes. This also allows modification to the internals of the memory
@@ -845,4 +845,4 @@ bool IsKernelVirtualAddress(const VAddr vaddr) {
845 return KERNEL_REGION_VADDR <= vaddr && vaddr < KERNEL_REGION_END; 845 return KERNEL_REGION_VADDR <= vaddr && vaddr < KERNEL_REGION_END;
846} 846}
847 847
848} // namespace Memory 848} // namespace Core::Memory