Skip to content

Commit 3837668

Browse files
committed
FIXED: is/2: 2^2147483648 and larger on Windows.
Completes 8733c1a
1 parent e04fe34 commit 3837668

1 file changed

Lines changed: 0 additions & 5 deletions

File tree

src/pl-arith.c

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2319,11 +2319,6 @@ get_int_exponent(Number n, uint64_t *expp)
23192319
return false;
23202320
}
23212321

2322-
#if SIZEOF_LONG < 8
2323-
if ( i > LONG_MAX || i < LONG_MIN )
2324-
return int_too_big();
2325-
#endif
2326-
23272322
if ( i < 0 )
23282323
{ i = -i;
23292324
if ( i < 0 )

0 commit comments

Comments
 (0)