mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
internal.h: RHASH_ARRAY_SIZE_RAW value is unsigned
and get rid of warnings. [ruby-core:89688] [Bug #15279] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@65512 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
6b1e425144
commit
fd8d3c5c09
1 changed files with 1 additions and 1 deletions
|
@ -686,7 +686,7 @@ enum ruby_rhash_flags {
|
|||
#define HASH_PROC_DEFAULT FL_USER2
|
||||
|
||||
#define RHASH_ARRAY_SIZE_RAW(h) \
|
||||
((int)((RBASIC(h)->flags & RHASH_ARRAY_SIZE_MASK) >> RHASH_ARRAY_SIZE_SHIFT))
|
||||
((unsigned int)((RBASIC(h)->flags & RHASH_ARRAY_SIZE_MASK) >> RHASH_ARRAY_SIZE_SHIFT))
|
||||
|
||||
int rb_hash_array_p(VALUE hash);
|
||||
struct li_table *rb_hash_array(VALUE hash);
|
||||
|
|
Loading…
Reference in a new issue