Remove not used fields from HASH

This commit is contained in:
yui-knk 2023-09-27 21:50:18 +09:00 committed by Yuichiro Kaneko
parent 97ac5deeec
commit eba19d86d4
2 changed files with 0 additions and 2 deletions

View File

@ -11520,7 +11520,6 @@ rb_node_hash_new(struct parser_params *p, NODE *nd_head, const YYLTYPE *loc)
rb_node_hash_t *n = NODE_NEWNODE(NODE_HASH, rb_node_hash_t, loc);
n->nd_head = nd_head;
n->nd_brace = 0;
n->not_used = 0;
return n;
}

View File

@ -558,7 +558,6 @@ typedef struct RNode_HASH {
struct RNode *nd_head;
long nd_brace;
VALUE not_used;
} rb_node_hash_t;
typedef struct RNode_RETURN {