diff options
-rw-r--r-- | parse.y | 2 | ||||
-rw-r--r-- | rubyparser.h | 2 |
2 files changed, 0 insertions, 4 deletions
@@ -12037,7 +12037,6 @@ rb_node_aryptn_new(struct parser_params *p, const YYLTYPE *loc) { rb_node_aryptn_t *n = NODE_NEWNODE(NODE_ARYPTN, rb_node_aryptn_t, loc); n->nd_pconst = 0; - n->not_used = 0; n->nd_apinfo = 0; return n; @@ -12059,7 +12058,6 @@ rb_node_fndptn_new(struct parser_params *p, const YYLTYPE *loc) { rb_node_fndptn_t *n = NODE_NEWNODE(NODE_FNDPTN, rb_node_fndptn_t, loc); n->nd_pconst = 0; - n->not_used = 0; n->nd_fpinfo = 0; return n; diff --git a/rubyparser.h b/rubyparser.h index 24feaca8dd..4e22f8d350 100644 --- a/rubyparser.h +++ b/rubyparser.h @@ -963,7 +963,6 @@ typedef struct RNode_ARYPTN { NODE node; struct RNode *nd_pconst; - VALUE not_used; struct rb_ary_pattern_info *nd_apinfo; } rb_node_aryptn_t; @@ -979,7 +978,6 @@ typedef struct RNode_FNDPTN { NODE node; struct RNode *nd_pconst; - VALUE not_used; struct rb_fnd_pattern_info *nd_fpinfo; } rb_node_fndptn_t; |