From 4504ae05501438005259997e1521fd01d8f5e849 Mon Sep 17 00:00:00 2001 From: Sandu Liviu Catalin Date: Thu, 14 Apr 2016 04:44:20 +0300 Subject: [PATCH] Remove leftover printf from math library, --- source/Library/Math.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/source/Library/Math.cpp b/source/Library/Math.cpp index 77438ed4..3b6bf612 100644 --- a/source/Library/Math.cpp +++ b/source/Library/Math.cpp @@ -1144,7 +1144,6 @@ SQFloat SqIToF(Int64 sigv, Int64 expv, Int32 padn, Int32 padc, bool negf) { fstr = ToStrF("%lld.%s%lld", sigv, padb, expv); } - printf("'%s'\n", fstr); // Now transform the resulted string to a floating point value #ifdef SQUSEDOUBLE return std::strtod(fstr, nullptr);