mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2024-11-14 21:37:52 -07:00
IniFile: Make Section constructor explicit
This commit is contained in:
parent
9ea59133b3
commit
99adc73383
@ -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);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user