Skip to content

Commit

Permalink
Fix nqp::pow_i some more.
Browse files Browse the repository at this point in the history
  • Loading branch information
pmurias committed Dec 20, 2015
1 parent 50a3cc0 commit 5563da9
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
Original file line number Diff line number Diff line change
Expand Up @@ -6192,7 +6192,7 @@ public static SixModelObject rand_I(SixModelObject a, SixModelObject type, Threa
}

public static long pow_i(long a, long b) {
return (int)Math.pow(a, b);
return (long)Math.pow(a, b);
}

public static double pow_n(double a, double b) {
Expand Down

0 comments on commit 5563da9

Please sign in to comment.