mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
bignum.c: suppress warnings
* bignum.c (power_cache_get_power): declare as inline before call to suppress warnings from gcc 4.2. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@42363 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
cb51608767
commit
b3be3c29c4
1 changed files with 1 additions and 1 deletions
2
bignum.c
2
bignum.c
|
@ -141,7 +141,7 @@ static inline VALUE bigtrunc(VALUE x);
|
|||
|
||||
static VALUE bigsq(VALUE x);
|
||||
static void bigdivmod(VALUE x, VALUE y, volatile VALUE *divp, volatile VALUE *modp);
|
||||
static VALUE power_cache_get_power(int base, int power_level, size_t *numdigits_ret);
|
||||
static inline VALUE power_cache_get_power(int base, int power_level, size_t *numdigits_ret);
|
||||
|
||||
static int
|
||||
nlz16(uint16_t x)
|
||||
|
|
Loading…
Add table
Reference in a new issue