* bignum.c (maxpow_in_bdigit_dbl): Useless #if removed.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@41980 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
b39b66f4aa
commit
a5da8319b6
@ -1,3 +1,7 @@
|
|||||||
|
Mon Jul 15 11:24:48 2013 Tanaka Akira <akr@fsij.org>
|
||||||
|
|
||||||
|
* bignum.c (maxpow_in_bdigit_dbl): Useless #if removed.
|
||||||
|
|
||||||
Mon Jul 15 11:10:46 2013 Zachary Scott <e@zzak.io>
|
Mon Jul 15 11:10:46 2013 Zachary Scott <e@zzak.io>
|
||||||
|
|
||||||
* bignum.c (rb_big_coerce): [DOC] Add docs for Bignum#coerce
|
* bignum.c (rb_big_coerce): [DOC] Add docs for Bignum#coerce
|
||||||
|
3
bignum.c
3
bignum.c
@ -402,8 +402,7 @@ maxpow_in_bdigit_dbl(int base, int *exp_ret)
|
|||||||
assert(2 <= base && base <= 36);
|
assert(2 <= base && base <= 36);
|
||||||
|
|
||||||
{
|
{
|
||||||
#if SIZEOF_BDIGIT_DBL == 0
|
#if SIZEOF_BDIGIT_DBL == 2
|
||||||
#elif SIZEOF_BDIGIT_DBL == 2
|
|
||||||
maxpow = maxpow16_num[base-2];
|
maxpow = maxpow16_num[base-2];
|
||||||
exponent = maxpow16_exp[base-2];
|
exponent = maxpow16_exp[base-2];
|
||||||
#elif SIZEOF_BDIGIT_DBL == 4
|
#elif SIZEOF_BDIGIT_DBL == 4
|
||||||
|
Loading…
x
Reference in New Issue
Block a user