mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 14:19:46 -06:00
SymbolDB: Default constructor and destructor within the cpp file
Given this is a class with non-trivial data-members, it's preferable to default the constructor and destructor in the cpp file.
This commit is contained in:
@ -62,8 +62,9 @@ public:
|
||||
using XFuncMap = std::map<u32, Symbol>;
|
||||
using XFuncPtrMap = std::map<u32, std::set<Symbol*>>;
|
||||
|
||||
SymbolDB() {}
|
||||
virtual ~SymbolDB() {}
|
||||
SymbolDB();
|
||||
virtual ~SymbolDB();
|
||||
|
||||
virtual Symbol* GetSymbolFromAddr(u32 addr) { return nullptr; }
|
||||
virtual Symbol* AddFunction(u32 start_addr) { return nullptr; }
|
||||
void AddCompleteSymbol(const Symbol& symbol);
|
||||
|
Reference in New Issue
Block a user