8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-24 04:03:03 +01:00

Revert "Fixed CORE-5570 - Negative infinity (double) shown incorrectly without sign in isql." - not compiling in MSVC.

This reverts commit 63080abc1e.
This commit is contained in:
Adriano dos Santos Fernandes 2017-07-21 19:29:06 +00:00
parent 23fb106cbe
commit 1b670aeeca

View File

@ -6894,7 +6894,7 @@ static bool checkSpecial(TEXT* const p, const int length, const double value)
if (isnan(value))
t = "NaN";
else if (isinf(value))
t = value == -INFINITY ? "-Infinity" : "Infinity";
t = "Infinity";
else
return false;