Merge pull request #11813 from lioncash/insert

PPCSymbolDB: Use emplace() where applicable
This commit is contained in:
Admiral H. Curtiss
2023-05-09 18:48:06 +02:00
committed by GitHub
2 changed files with 16 additions and 14 deletions

View File

@ -37,6 +37,9 @@ struct Symbol
Data,
};
Symbol() = default;
explicit Symbol(const std::string& name) { Rename(name); }
void Rename(const std::string& symbol_name);
std::string name;