summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornormal <normal@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-02-06 20:33:03 +0000
committernormal <normal@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-02-06 20:33:03 +0000
commit4baa488edba1d10e799bacf0c0637c0bba7375a8 ()
tree2376ea7f696a25bf5637334a1453e66b923e6e9e
parentd4bbc2d776878492ef9cf911bca8c43ac0a9b1e5 (diff)
constant.h: reduce rb_const_entry_t size on 64-bit
* constant.h: reduce rb_const_entry_t size on 64-bit 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
-rw-r--r--ChangeLog5
-rw-r--r--constant.h2
2 files changed, 6 insertions, 1 deletions
@@ -1,3 +1,8 @@
Thu Feb 6 15:27:46 2014 Koichi Sasada <[email protected]>
* gc.c (get_envparam_int): correct warning messages.
@@ -18,9 +18,9 @@ typedef enum {
typedef struct rb_const_entry_struct {
rb_const_flag_t flag;
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);