diff options
author | git <svn@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2019-08-03 10:25:20 +0900 |
---|---|---|
committer | git <svn@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2019-08-03 10:25:20 +0900 |
commit | fb96bea7ed8ed6765fda2a1db90a2cfce14e59b7 (patch) | |
tree | 99ab3ff6361ee22f115257ffa62f9a4c033b21dd /bignum.c | |
parent | 4ea5c5610aeadecf78fdd2b7d6faad8574953620 (diff) | |
download | bundler-fb96bea7ed8ed6765fda2a1db90a2cfce14e59b7.tar.gz |
* expand tabs.
Diffstat (limited to 'bignum.c')
-rw-r--r-- | bignum.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -6126,7 +6126,7 @@ rb_big_divmod(VALUE x, VALUE y) y = rb_int2big(FIX2LONG(y)); } else if (!RB_BIGNUM_TYPE_P(y)) { - return rb_num_coerce_bin(x, y, idDivmod); + return rb_num_coerce_bin(x, y, idDivmod); } bigdivmod(x, y, &div, &mod); @@ -6214,7 +6214,7 @@ rb_big_fdiv_double(VALUE x, VALUE y) return big_fdiv_float(x, y); } else { - return NUM2DBL(rb_num_coerce_bin(x, y, idFdiv)); + return NUM2DBL(rb_num_coerce_bin(x, y, idFdiv)); } v = rb_flo_div_flo(DBL2NUM(dx), DBL2NUM(dy)); return NUM2DBL(v); |