summaryrefslogtreecommitdiff
path: root/Source/Core/Common/GekkoDisassembler.cpp
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2018-05-25 16:29:56 -0400
committerLioncash <mathew1800@gmail.com>2018-05-25 16:55:09 -0400
commitb60ad2425d05dc5134de76d0848a5079ad197500 (patch)
treee0728931ff3350c58b0f5465acebc3af2802c497 /Source/Core/Common/GekkoDisassembler.cpp
parent3d44dc39814197e43bf1b8c2524684252251ee7b (diff)
Common: Namespace GekkoDisassembler.cpp/.h
Moves more common code into the Common namespace where it belongs
Diffstat (limited to 'Source/Core/Common/GekkoDisassembler.cpp')
-rw-r--r--Source/Core/Common/GekkoDisassembler.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/Source/Core/Common/GekkoDisassembler.cpp b/Source/Core/Common/GekkoDisassembler.cpp
index ac77957991..7571ffff7c 100644
--- a/Source/Core/Common/GekkoDisassembler.cpp
+++ b/Source/Core/Common/GekkoDisassembler.cpp
@@ -38,6 +38,8 @@
#include "Common/GekkoDisassembler.h"
#include "Common/StringUtil.h"
+namespace Common
+{
// version/revision
#define PPCDISASM_VER 1
#define PPCDISASM_REV 6
@@ -2315,3 +2317,4 @@ const char* GekkoDisassembler::GetFPRName(u32 index)
return nullptr;
}
+} // namespace Common