core: memory: Move to Core::Memory namespace.

- helpful to disambiguate Kernel::Memory namespace.
This commit is contained in:
bunnei 2020-03-31 15:10:44 -04:00
parent 94e00fbb3f
commit 5b9e69e7fe
37 changed files with 100 additions and 98 deletions

View file

@ -23,7 +23,7 @@ class PhysicalMemory;
class Process;
} // namespace Kernel
namespace Memory {
namespace Core::Memory {
/**
* Page size used by the ARM architecture. This is the smallest granularity with which memory can
@ -503,4 +503,4 @@ private:
/// Determines if the given VAddr is a kernel address
bool IsKernelVirtualAddress(VAddr vaddr);
} // namespace Memory
} // namespace Core::Memory