mirror of
https://github.com/izzy2lost/dolphin.git
synced 2026-06-19 01:16:48 -07:00
IniFile: Make Section constructor explicit
This commit is contained in:
@@ -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);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user