From 90f8265497201619efffe9dc8a9ffc99ccb880b3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A9o=20Lam?= Date: Wed, 5 Jul 2017 13:49:33 +0200 Subject: Replace StringFromInt with std::to_string Updated version of #47. Android should support to_string now that we use a modern version of libc++ when building. --- Source/Core/Common/IniFile.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Source/Core/Common/IniFile.cpp') 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) -- cgit v1.2.3