Merge pull request #11979 from nicovank/master

Minor fix: Rename Symbol constructor parameter to prevent shadowing
This commit is contained in:
Admiral H. Curtiss
2023-06-21 00:54:30 +02:00
committed by GitHub

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);