diff --git a/Source/Core/Common/IniFile.h b/Source/Core/Common/IniFile.h index e2021261b1..e8902f468a 100644 --- a/Source/Core/Common/IniFile.h +++ b/Source/Core/Common/IniFile.h @@ -30,7 +30,7 @@ public: public: Section() {} - Section(const std::string& _name) : name(_name) {} + explicit Section(const std::string& name_) : name(name_) {} bool Exists(const std::string& key) const; bool Delete(const std::string& key);