1
0
mirror of https://github.com/VCMP-SqMod/SqMod.git synced 2024-11-08 08:47:17 +01:00

Remove leftover printf from math library,

This commit is contained in:
Sandu Liviu Catalin 2016-04-14 04:44:20 +03:00
parent be8b631aea
commit 4504ae0550

View File

@ -1144,7 +1144,6 @@ SQFloat SqIToF(Int64 sigv, Int64 expv, Int32 padn, Int32 padc, bool negf)
{ {
fstr = ToStrF("%lld.%s%lld", sigv, padb, expv); fstr = ToStrF("%lld.%s%lld", sigv, padb, expv);
} }
printf("'%s'\n", fstr);
// Now transform the resulted string to a floating point value // Now transform the resulted string to a floating point value
#ifdef SQUSEDOUBLE #ifdef SQUSEDOUBLE
return std::strtod(fstr, nullptr); return std::strtod(fstr, nullptr);