Rename Symbol constructor parameter to prevent shadowing

This commit is contained in:
Nicolas van Kempen 2023-06-20 13:38:31 -04:00
parent 27db8d4123
commit 4ef2f2c710
1 changed files with 1 additions and 1 deletions

View File

@ -38,7 +38,7 @@ struct Symbol
};
Symbol() = default;
explicit Symbol(const std::string& name) { Rename(name); }
explicit Symbol(const std::string& symbol_name) { Rename(symbol_name); }
void Rename(const std::string& symbol_name);