mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 14:19:46 -06:00
SymbolDB: Namespace code under the Common namespace
Moves more common code into the Common namespace where it belongs.
This commit is contained in:
@ -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
|
||||
|
Reference in New Issue
Block a user