* 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:
akr 2013-07-15 02:26:24 +00:00
Родитель b39b66f4aa
Коммит a5da8319b6
2 изменённых файлов: 5 добавлений и 2 удалений

Просмотреть файл

@ -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>
* bignum.c (rb_big_coerce): [DOC] Add docs for Bignum#coerce

Просмотреть файл

@ -402,8 +402,7 @@ maxpow_in_bdigit_dbl(int base, int *exp_ret)
assert(2 <= base && base <= 36);
{
#if SIZEOF_BDIGIT_DBL == 0
#elif SIZEOF_BDIGIT_DBL == 2
#if SIZEOF_BDIGIT_DBL == 2
maxpow = maxpow16_num[base-2];
exponent = maxpow16_exp[base-2];
#elif SIZEOF_BDIGIT_DBL == 4