Skip to content

Commit

Permalink
fixed files form Closure #51
Browse files Browse the repository at this point in the history
  • Loading branch information
tdurieux committed Mar 7, 2017
1 parent 77dddad commit 24b8e97
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ void addNumber(double x) {
add(" ");
}

if ((long) x == x) {
if ((long) x == x && !isNegativeZero(x)) {
long value = (long) x;
long mantissa = value;
int exp = 0;
Expand Down

0 comments on commit 24b8e97

Please sign in to comment.