diff options
author | yui-knk <[email protected]> | 2023-09-27 18:58:01 +0900 |
---|---|---|
committer | Yuichiro Kaneko <[email protected]> | 2023-09-29 11:43:04 +0900 |
commit | b9bf419aa36e438760fda4109561358bb20d09f1 (patch) | |
tree | c568e5d3b9169faf7caa52c3eac02e413856635d /rubyparser.h | |
parent | 52f8b347a0cc0d0529d5ddaf3094631e8fd914f2 (diff) |
Remove not used fields from ALIAS, VALIAS, UNDEF
Diffstat (limited to 'rubyparser.h')
-rw-r--r-- | rubyparser.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/rubyparser.h b/rubyparser.h index 1f138975a3..9a6780dc46 100644 --- a/rubyparser.h +++ b/rubyparser.h @@ -855,7 +855,6 @@ typedef struct RNode_ALIAS { struct RNode *nd_1st; struct RNode *nd_2nd; - VALUE not_used; } rb_node_alias_t; typedef struct RNode_VALIAS { @@ -863,15 +862,12 @@ typedef struct RNode_VALIAS { ID nd_alias; ID nd_orig; - VALUE not_used; } rb_node_valias_t; typedef struct RNode_UNDEF { NODE node; - VALUE not_used; struct RNode *nd_undef; - VALUE not_used2; } rb_node_undef_t; typedef struct RNode_CLASS { |