diff options
author | yui-knk <yui-knk@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2018-05-29 01:58:57 +0000 |
---|---|---|
committer | yui-knk <yui-knk@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2018-05-29 01:58:57 +0000 |
commit | 8b9e877b1f36ba62657c75aea2e81212619f2195 (patch) | |
tree | b552f49035e4c6f8f1f242aa1773c38fd4911309 /node.h | |
parent | 7db2db67fae6e117981ad970cefcf2ce64cb762b (diff) | |
download | bundler-8b9e877b1f36ba62657c75aea2e81212619f2195.tar.gz |
Unused macro and field
* node.h (nd_cnt, struct RNode): nd_cnt has been unused
since r60239, and also cnt field.
* .gdbinit (nd_cnt): ditto
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@63519 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'node.h')
-rw-r--r-- | node.h | 2 |
1 files changed, 0 insertions, 2 deletions
@@ -262,7 +262,6 @@ typedef struct RNode { long state; struct rb_global_entry *entry; struct rb_args_info *args; - long cnt; VALUE value; } u3; rb_code_location_t nd_loc; @@ -324,7 +323,6 @@ typedef struct RNode { #define nd_cval u3.value #define nd_oid u1.id -#define nd_cnt u3.cnt #define nd_tbl u1.tbl #define nd_var u1.node |