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
commit 8c67083c87
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
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;