From 05742ffd488703f71462518957260f12cb657088 Mon Sep 17 00:00:00 2001 From: Lioncash Date: Thu, 6 Feb 2014 18:08:31 -0500 Subject: Remove function StringFromInt from StringUtil.cpp/.h. C++11 has std::to_string for this now. --- Source/Core/Common/StringUtil.cpp | 7 ------- 1 file changed, 7 deletions(-) (limited to 'Source/Core/Common/StringUtil.cpp') diff --git a/Source/Core/Common/StringUtil.cpp b/Source/Core/Common/StringUtil.cpp index 7ad4ac6ca5..a0a8c739ca 100644 --- a/Source/Core/Common/StringUtil.cpp +++ b/Source/Core/Common/StringUtil.cpp @@ -185,13 +185,6 @@ bool TryParse(const std::string &str, bool *const output) return true; } -std::string StringFromInt(int value) -{ - char temp[16]; - sprintf(temp, "%i", value); - return temp; -} - std::string StringFromBool(bool value) { return value ? "True" : "False"; -- cgit v1.2.3