summaryrefslogtreecommitdiff
path: root/src/core/core.h
diff options
context:
space:
mode:
authorGravatar Lioncash2018-08-24 21:43:32 -0400
committerGravatar Lioncash2018-08-24 21:50:39 -0400
commit43e0d865faa932b980580a79a87d5ea464e9545c (patch)
treeb4f06db70fe68a3edffc29e9373b9d98b8e35306 /src/core/core.h
parentPort #4013 from Citra: "Init logging sooner so we dont miss some logs on star... (diff)
downloadyuzu-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.h4
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
25class ARM_Interface;
26
27namespace Core::Frontend { 25namespace Core::Frontend {
28class EmuWindow; 26class EmuWindow;
29} 27}
@@ -38,6 +36,8 @@ class RendererBase;
38 36
39namespace Core { 37namespace Core {
40 38
39class ARM_Interface;
40
41class System { 41class System {
42public: 42public:
43 System(const System&) = delete; 43 System(const System&) = delete;