diff options
| author | 2020-03-31 15:10:44 -0400 | |
|---|---|---|
| committer | 2020-04-17 00:59:28 -0400 | |
| commit | 4caff51710a793c6c2c1069ddd6e92185aa731fe (patch) | |
| tree | 9770a5cdbfc40f6bddab093d5010f80ddad5bd26 /src/core/memory.h | |
| parent | common: alignment: Add a helper function for generic alignment checking. (diff) | |
| download | yuzu-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.h')
| -rw-r--r-- | src/core/memory.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/memory.h b/src/core/memory.h index b92d678a4..f6d9e8e8c 100644 --- a/src/core/memory.h +++ b/src/core/memory.h | |||
| @@ -23,7 +23,7 @@ class PhysicalMemory; | |||
| 23 | class Process; | 23 | class Process; |
| 24 | } // namespace Kernel | 24 | } // namespace Kernel |
| 25 | 25 | ||
| 26 | namespace Memory { | 26 | namespace Core::Memory { |
| 27 | 27 | ||
| 28 | /** | 28 | /** |
| 29 | * Page size used by the ARM architecture. This is the smallest granularity with which memory can | 29 | * Page size used by the ARM architecture. This is the smallest granularity with which memory can |
| @@ -503,4 +503,4 @@ private: | |||
| 503 | /// Determines if the given VAddr is a kernel address | 503 | /// Determines if the given VAddr is a kernel address |
| 504 | bool IsKernelVirtualAddress(VAddr vaddr); | 504 | bool IsKernelVirtualAddress(VAddr vaddr); |
| 505 | 505 | ||
| 506 | } // namespace Memory | 506 | } // namespace Core::Memory |