Remove not used fields from ERRINFO

This commit is contained in:
yui-knk 2023-09-27 22:21:13 +09:00 committed by Yuichiro Kaneko
parent fa54d06a40
commit 0a386b827b
2 changed files with 0 additions and 7 deletions

View File

@ -12013,9 +12013,6 @@ static rb_node_errinfo_t *
rb_node_errinfo_new(struct parser_params *p, const YYLTYPE *loc)
{
rb_node_errinfo_t *n = NODE_NEWNODE(NODE_ERRINFO, rb_node_errinfo_t, loc);
n->not_used = 0;
n->not_used2 = 0;
n->not_used3 = 0;
return n;
}

View File

@ -937,10 +937,6 @@ typedef struct RNode_FALSE {
typedef struct RNode_ERRINFO {
NODE node;
VALUE not_used;
VALUE not_used2;
VALUE not_used3;
} rb_node_errinfo_t;
typedef struct RNode_DEFINED {