SymbolDB: Add constructors to Symbol

Allows for much more convenient in-place construction.
This commit is contained in:
Lioncash
2023-05-02 16:04:45 -04:00
parent a14d8003f4
commit 15d1ae3a8a
2 changed files with 6 additions and 6 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;