diff options
| author | Lioncash <mathew1800@gmail.com> | 2018-07-09 21:47:50 -0400 |
|---|---|---|
| committer | Lioncash <mathew1800@gmail.com> | 2018-07-09 22:23:57 -0400 |
| commit | dfdfe6c972f91334ca4b9b25ee2d03ab954ea547 (patch) | |
| tree | f99c2a02f7e986b69c8e420f4e20974df33db928 /Source/Core/Common/DebugInterface.h | |
| parent | 9487892c18574730fbcfe033b690f831ec06d262 (diff) | |
Common/DebugInterface: Namespace code under the Common namespace
Gets more identifiers out of the global namespace and makes it more in
line with the rest of the (mostly) namespaced Common code.
Diffstat (limited to 'Source/Core/Common/DebugInterface.h')
| -rw-r--r-- | Source/Core/Common/DebugInterface.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Source/Core/Common/DebugInterface.h b/Source/Core/Common/DebugInterface.h index 0d1ea6159a..e73c44ee28 100644 --- a/Source/Core/Common/DebugInterface.h +++ b/Source/Core/Common/DebugInterface.h @@ -13,6 +13,8 @@ #include "Common/Debug/MemoryPatches.h" #include "Common/Debug/Watches.h" +namespace Common +{ class DebugInterface { protected: @@ -75,3 +77,4 @@ public: virtual std::string GetDescription(unsigned int /*address*/) = 0; virtual void Clear() = 0; }; +} // namespace Common |
