mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-29 04:08:55 +00:00
SymbolDB: Namespace code under the Common namespace
Moves more common code into the Common namespace where it belongs.
This commit is contained in:
parent
72e8058fb8
commit
f4ec419929
24 changed files with 122 additions and 104 deletions
|
@ -15,6 +15,8 @@
|
|||
|
||||
#include "Common/CommonTypes.h"
|
||||
|
||||
namespace Common
|
||||
{
|
||||
struct SCall
|
||||
{
|
||||
SCall(u32 a, u32 b) : function(a), call_address(b) {}
|
||||
|
@ -84,3 +86,4 @@ protected:
|
|||
XFuncMap m_functions;
|
||||
XFuncPtrMap m_checksum_to_function;
|
||||
};
|
||||
} // namespace Common
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue