Remove not used fields from ERROR

This commit is contained in:
yui-knk 2023-09-30 12:48:06 +09:00 committed by Yuichiro Kaneko
parent db18428fff
commit 716a12902d
2 changed files with 0 additions and 7 deletions

View File

@ -12087,9 +12087,6 @@ static rb_node_error_t *
rb_node_error_new(struct parser_params *p, const YYLTYPE *loc) rb_node_error_new(struct parser_params *p, const YYLTYPE *loc)
{ {
rb_node_error_t *n = NODE_NEWNODE(NODE_ERROR, rb_node_error_t, loc); rb_node_error_t *n = NODE_NEWNODE(NODE_ERROR, rb_node_error_t, loc);
n->not_used = 0;
n->not_used2 = 0;
n->not_used3 = 0;
return n; return n;
} }

View File

@ -981,10 +981,6 @@ typedef struct RNode_FNDPTN {
typedef struct RNode_ERROR { typedef struct RNode_ERROR {
NODE node; NODE node;
VALUE not_used;
VALUE not_used2;
VALUE not_used3;
} rb_node_error_t; } rb_node_error_t;
#define RNODE(obj) ((struct RNode *)(obj)) #define RNODE(obj) ((struct RNode *)(obj))