From 43e0d865faa932b980580a79a87d5ea464e9545c Mon Sep 17 00:00:00 2001 From: Lioncash Date: Fri, 24 Aug 2018 21:43:32 -0400 Subject: core: Namespace all code in the arm subdirectory under the Core namespace Gets all of these types and interfaces out of the global namespace. --- src/core/arm/arm_interface.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/core/arm/arm_interface.h') diff --git a/src/core/arm/arm_interface.h b/src/core/arm/arm_interface.h index b0d7ced7f..c368745b1 100644 --- a/src/core/arm/arm_interface.h +++ b/src/core/arm/arm_interface.h @@ -8,6 +8,8 @@ #include "common/common_types.h" #include "core/hle/kernel/vm_manager.h" +namespace Core { + /// Generic ARM11 CPU interface class ARM_Interface : NonCopyable { public: @@ -122,3 +124,5 @@ public: /// Prepare core for thread reschedule (if needed to correctly handle state) virtual void PrepareReschedule() = 0; }; + +} // namespace Core -- cgit v1.2.3