From 99adc7338360eb5723b3325e5829b417e4d3cf08 Mon Sep 17 00:00:00 2001 From: Lioncash Date: Wed, 22 Mar 2017 18:07:23 -0400 Subject: [PATCH] IniFile: Make Section constructor explicit --- Source/Core/Common/IniFile.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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);