diff options
| author | Léo Lam <leo@innovatetechnologi.es> | 2018-05-10 20:34:20 +0200 |
|---|---|---|
| committer | Léo Lam <leo@innovatetechnologi.es> | 2018-05-10 21:35:27 +0200 |
| commit | 722d31124ca4a958d658b3c8d2d5dba1cb637ab8 (patch) | |
| tree | 63f6e8dfe922485b79c80f10057b8a02f791be7d /Source/Core/Common/SettingsHandler.cpp | |
| parent | 09d2afa91f7781c84c25e989d916957200e63eca (diff) | |
SettingsHandler: Fix const correctness
Diffstat (limited to 'Source/Core/Common/SettingsHandler.cpp')
| -rw-r--r-- | Source/Core/Common/SettingsHandler.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/Common/SettingsHandler.cpp b/Source/Core/Common/SettingsHandler.cpp index 7663959a20..6ce08f6579 100644 --- a/Source/Core/Common/SettingsHandler.cpp +++ b/Source/Core/Common/SettingsHandler.cpp @@ -44,7 +44,7 @@ void SettingsHandler::SetBytes(SettingsHandler::Buffer&& buffer) Decrypt(); } -const std::string SettingsHandler::GetValue(const std::string& key) +std::string SettingsHandler::GetValue(const std::string& key) const { std::string delim = std::string("\r\n"); std::string toFind = delim + key + "="; |
