mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-22 22:00:39 -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:
@ -20,6 +20,10 @@ static std::string GetStrippedFunctionName(const std::string& symbol_name)
|
||||
return name;
|
||||
}
|
||||
|
||||
SymbolDB::SymbolDB() = default;
|
||||
|
||||
SymbolDB::~SymbolDB() = default;
|
||||
|
||||
void Symbol::Rename(const std::string& symbol_name)
|
||||
{
|
||||
this->name = symbol_name;
|
||||
|
Reference in New Issue
Block a user