mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-04-21 03:54:57 +00:00
IniFile: Make Section constructor explicit
This commit is contained in:
parent
9ea59133b3
commit
99adc73383
1 changed files with 1 additions and 1 deletions
|
@ -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…
Add table
Reference in a new issue