diff options
Diffstat (limited to 'Source/Core/Common/IniFile.cpp')
| -rw-r--r-- | Source/Core/Common/IniFile.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/Common/IniFile.cpp b/Source/Core/Common/IniFile.cpp index 2aed1b805f..ab20ff58fd 100644 --- a/Source/Core/Common/IniFile.cpp +++ b/Source/Core/Common/IniFile.cpp @@ -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) |
