From 8b56d0792cace06693b18af3fe848f66434fc4cd Mon Sep 17 00:00:00 2001 From: Littleboy Date: Wed, 11 Sep 2013 20:36:38 -0400 Subject: CREATE_PROJECT: Remove usage of std::to_string() --- devtools/create_project/create_project.cpp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'devtools/create_project/create_project.cpp') diff --git a/devtools/create_project/create_project.cpp b/devtools/create_project/create_project.cpp index 3ee5fc4f97..7ae2df35c8 100644 --- a/devtools/create_project/create_project.cpp +++ b/devtools/create_project/create_project.cpp @@ -39,7 +39,7 @@ #include #include - +#include #include #include #include @@ -966,6 +966,10 @@ bool producesObjectFile(const std::string &fileName) { return false; } +std::string toString(int num) { + return static_cast(&(std::ostringstream() << num))->str(); +} + /** * Checks whether the give file in the specified directory is present in the given * file list. -- cgit v1.2.3