Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix a comment.
  • Loading branch information
peschwa committed Sep 23, 2015
1 parent bf1d2ad commit 97a0490
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/vm/jvm/runtime/org/perl6/nqp/runtime/Ops.java
Expand Up @@ -6006,7 +6006,7 @@ public static String base_I(SixModelObject value, long radix, ThreadContext tc)

public static long isbig_I(SixModelObject value, ThreadContext tc) {
/* Check if it needs more bits than a long can offer; note that
* bitLength excludes sign considerations, thus 32 rather than
* bitLength excludes sign considerations, thus 31 rather than
* 32. */
return getBI(tc, value).bitLength() > 31 ? 1 : 0;
}
Expand Down

0 comments on commit 97a0490

Please sign in to comment.