Remove not used fields from EVSTR

This commit is contained in:
yui-knk 2023-10-08 11:23:42 +09:00 committed by Yuichiro Kaneko
parent 2b6228be48
commit b5d74f4f26
2 changed files with 0 additions and 4 deletions

View File

@ -11879,9 +11879,7 @@ static rb_node_evstr_t *
rb_node_evstr_new(struct parser_params *p, NODE *nd_body, const YYLTYPE *loc) rb_node_evstr_new(struct parser_params *p, NODE *nd_body, const YYLTYPE *loc)
{ {
rb_node_evstr_t *n = NODE_NEWNODE(NODE_EVSTR, rb_node_evstr_t, loc); rb_node_evstr_t *n = NODE_NEWNODE(NODE_EVSTR, rb_node_evstr_t, loc);
n->not_used = 0;
n->nd_body = nd_body; n->nd_body = nd_body;
n->not_used2 = 0;
return n; return n;
} }

View File

@ -657,9 +657,7 @@ typedef struct RNode_DXSTR {
typedef struct RNode_EVSTR { typedef struct RNode_EVSTR {
NODE node; NODE node;
VALUE not_used;
struct RNode *nd_body; struct RNode *nd_body;
VALUE not_used2;
} rb_node_evstr_t; } rb_node_evstr_t;
typedef struct RNode_DREGX { typedef struct RNode_DREGX {