mirror of
https://github.com/izzy2lost/dolphin.git
synced 2026-06-19 01:16:48 -07:00
Use 'contains' method
This commit is contained in:
@@ -75,7 +75,7 @@ bool IniFile::Section::Get(std::string_view key, std::string* value,
|
||||
|
||||
bool IniFile::Section::Exists(std::string_view key) const
|
||||
{
|
||||
return values.find(key) != values.end();
|
||||
return values.contains(key);
|
||||
}
|
||||
|
||||
bool IniFile::Section::Delete(std::string_view key)
|
||||
|
||||
Reference in New Issue
Block a user