mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-28 16:49:58 -06:00
PPCSymbolDB: Default destructor and pass to member variables in the constructor initializer-list
This commit is contained in:
@ -21,15 +21,11 @@
|
||||
|
||||
PPCSymbolDB g_symbolDB;
|
||||
|
||||
PPCSymbolDB::PPCSymbolDB()
|
||||
PPCSymbolDB::PPCSymbolDB() : debugger{&PowerPC::debug_interface}
|
||||
{
|
||||
// Get access to the disasm() fgnction
|
||||
debugger = &PowerPC::debug_interface;
|
||||
}
|
||||
|
||||
PPCSymbolDB::~PPCSymbolDB()
|
||||
{
|
||||
}
|
||||
PPCSymbolDB::~PPCSymbolDB() = default;
|
||||
|
||||
// Adds the function to the list, unless it's already there
|
||||
Symbol* PPCSymbolDB::AddFunction(u32 start_addr)
|
||||
|
Reference in New Issue
Block a user