IniFile: Make Section constructor explicit
This commit is contained in:
parent
9ea59133b3
commit
99adc73383
|
@ -30,7 +30,7 @@ public:
|
||||||
|
|
||||||
public:
|
public:
|
||||||
Section() {}
|
Section() {}
|
||||||
Section(const std::string& _name) : name(_name) {}
|
explicit Section(const std::string& name_) : name(name_) {}
|
||||||
bool Exists(const std::string& key) const;
|
bool Exists(const std::string& key) const;
|
||||||
bool Delete(const std::string& key);
|
bool Delete(const std::string& key);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue