summaryrefslogtreecommitdiff
path: root/Source/Core/Common/IniFile.cpp
diff options
context:
space:
mode:
authorLeo Lam <leolino.lam@gmail.com>2017-07-05 17:36:07 +0200
committerGitHub <noreply@github.com>2017-07-05 17:36:07 +0200
commit24f05f14f2760f2ca5b592a8d9b0da022f9bc45a (patch)
treedd24b167d5c66b4bdebecb0c08dd7e4879977207 /Source/Core/Common/IniFile.cpp
parentd498a9b3d5ce36ddc346396fae933a6b49537741 (diff)
parent90f8265497201619efffe9dc8a9ffc99ccb880b3 (diff)
Merge pull request #5752 from leoetlino/to_string
Replace StringFromInt with std::to_string
Diffstat (limited to 'Source/Core/Common/IniFile.cpp')
-rw-r--r--Source/Core/Common/IniFile.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/Common/IniFile.cpp b/Source/Core/Common/IniFile.cpp
index 5c38dd6a19..ddaf64b0e3 100644
--- a/Source/Core/Common/IniFile.cpp
+++ b/Source/Core/Common/IniFile.cpp
@@ -93,7 +93,7 @@ void IniFile::Section::Set(const std::string& key, double newValue)
void IniFile::Section::Set(const std::string& key, int newValue)
{
- Set(key, StringFromInt(newValue));
+ Set(key, std::to_string(newValue));
}
void IniFile::Section::Set(const std::string& key, s64 newValue)