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/unicorn/arm_unicorn.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/core/arm/unicorn/arm_unicorn.h') diff --git a/src/core/arm/unicorn/arm_unicorn.h b/src/core/arm/unicorn/arm_unicorn.h index af7943352..bd6b2f723 100644 --- a/src/core/arm/unicorn/arm_unicorn.h +++ b/src/core/arm/unicorn/arm_unicorn.h @@ -9,6 +9,8 @@ #include "core/arm/arm_interface.h" #include "core/gdbstub/gdbstub.h" +namespace Core { + class ARM_Unicorn final : public ARM_Interface { public: ARM_Unicorn(); @@ -46,3 +48,5 @@ private: GDBStub::BreakpointAddress last_bkpt{}; bool last_bkpt_hit; }; + +} // namespace Core -- cgit v1.2.3