mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-28 05:06:42 +00:00
Merge pull request #11813 from lioncash/insert
PPCSymbolDB: Use emplace() where applicable
This commit is contained in:
commit
8c67083c87
2 changed files with 16 additions and 14 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue