mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-31 13:18:50 +00: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:
parent
a1a81c7bc9
commit
72e8058fb8
2 changed files with 7 additions and 2 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue