diff --git a/parse.y b/parse.y index 84ab7905ec..1346aff3d4 100644 --- a/parse.y +++ b/parse.y @@ -11839,8 +11839,6 @@ rb_node_lit_new(struct parser_params *p, VALUE nd_lit, const YYLTYPE *loc) { rb_node_lit_t *n = NODE_NEWNODE(NODE_LIT, rb_node_lit_t, loc); n->nd_lit = nd_lit; - n->not_used = 0; - n->not_used2 = 0; return n; } diff --git a/rubyparser.h b/rubyparser.h index 92bfda8d6a..d3930d3b0a 100644 --- a/rubyparser.h +++ b/rubyparser.h @@ -612,8 +612,6 @@ typedef struct RNode_LIT { NODE node; VALUE nd_lit; - VALUE not_used; - VALUE not_used2; } rb_node_lit_t; typedef struct RNode_STR {