mirror of
https://github.com/ruby/ruby.git
synced 2025-08-15 13:39:04 +02:00
constant.h: reduce rb_const_entry_t size on 64-bit
* constant.h: reduce rb_const_entry_t size on 64-bit Patch by Adam Avilla [ruby-core:60542] [Feature #9496] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@44869 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
d4bbc2d776
commit
4baa488edb
2 changed files with 6 additions and 1 deletions
|
@ -18,9 +18,9 @@ typedef enum {
|
|||
|
||||
typedef struct rb_const_entry_struct {
|
||||
rb_const_flag_t flag;
|
||||
int line;
|
||||
const VALUE value; /* should be mark */
|
||||
const VALUE file; /* should be mark */
|
||||
int line;
|
||||
} rb_const_entry_t;
|
||||
|
||||
VALUE rb_mod_private_constant(int argc, VALUE *argv, VALUE obj);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue