diff options
| author | 2018-08-24 21:43:32 -0400 | |
|---|---|---|
| committer | 2018-08-24 21:50:39 -0400 | |
| commit | 43e0d865faa932b980580a79a87d5ea464e9545c (patch) | |
| tree | b4f06db70fe68a3edffc29e9373b9d98b8e35306 /src/core/core.h | |
| parent | Port #4013 from Citra: "Init logging sooner so we dont miss some logs on star... (diff) | |
| download | yuzu-43e0d865faa932b980580a79a87d5ea464e9545c.tar.gz yuzu-43e0d865faa932b980580a79a87d5ea464e9545c.tar.xz yuzu-43e0d865faa932b980580a79a87d5ea464e9545c.zip | |
core: Namespace all code in the arm subdirectory under the Core namespace
Gets all of these types and interfaces out of the global namespace.
Diffstat (limited to 'src/core/core.h')
| -rw-r--r-- | src/core/core.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/core.h b/src/core/core.h index 790e23cae..144cbe620 100644 --- a/src/core/core.h +++ b/src/core/core.h | |||
| @@ -22,8 +22,6 @@ | |||
| 22 | #include "video_core/debug_utils/debug_utils.h" | 22 | #include "video_core/debug_utils/debug_utils.h" |
| 23 | #include "video_core/gpu.h" | 23 | #include "video_core/gpu.h" |
| 24 | 24 | ||
| 25 | class ARM_Interface; | ||
| 26 | |||
| 27 | namespace Core::Frontend { | 25 | namespace Core::Frontend { |
| 28 | class EmuWindow; | 26 | class EmuWindow; |
| 29 | } | 27 | } |
| @@ -38,6 +36,8 @@ class RendererBase; | |||
| 38 | 36 | ||
| 39 | namespace Core { | 37 | namespace Core { |
| 40 | 38 | ||
| 39 | class ARM_Interface; | ||
| 40 | |||
| 41 | class System { | 41 | class System { |
| 42 | public: | 42 | public: |
| 43 | System(const System&) = delete; | 43 | System(const System&) = delete; |