Skip to content

Commit eba19d8

Browse files
committed
Remove not used fields from HASH
1 parent 97ac5de commit eba19d8

File tree

2 files changed

+0
-2
lines changed

2 files changed

+0
-2
lines changed

parse.y

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11520,7 +11520,6 @@ rb_node_hash_new(struct parser_params *p, NODE *nd_head, const YYLTYPE *loc)
1152011520
rb_node_hash_t *n = NODE_NEWNODE(NODE_HASH, rb_node_hash_t, loc);
1152111521
n->nd_head = nd_head;
1152211522
n->nd_brace = 0;
11523-
n->not_used = 0;
1152411523

1152511524
return n;
1152611525
}

rubyparser.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -558,7 +558,6 @@ typedef struct RNode_HASH {
558558

559559
struct RNode *nd_head;
560560
long nd_brace;
561-
VALUE not_used;
562561
} rb_node_hash_t;
563562

564563
typedef struct RNode_RETURN {

0 commit comments

Comments
 (0)