Skip to content

Commit

Permalink
Fix (typo?) bug in the BigNum PMC.
Browse files Browse the repository at this point in the history
  • Loading branch information
nolanlum committed Dec 15, 2010
1 parent f920e61 commit abf141f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pmc/bignum.pmc
Expand Up @@ -1808,7 +1808,7 @@ TODO: Only supports Integer values for now.
bignum_div_bignum_int(INTERP, SELF, VTABLE_get_integer(INTERP, value), SELF);
}
MULTI void i_divide(Float value) {
bignum_div_bignum_float(INTERP, SELF, VTABLE_get_integer(INTERP, value), SELF);
bignum_div_bignum_float(INTERP, SELF, VTABLE_get_number(INTERP, value), SELF);
}
MULTI void i_divide(DEFAULT value) {
Parrot_ex_throw_from_c_args(INTERP, NULL,
Expand Down

0 comments on commit abf141f

Please sign in to comment.