Remove not used fields from DOT2, DOT3, FLIP2, FLIP3

This commit is contained in:
yui-knk 2023-09-27 21:41:12 +09:00 committed by Yuichiro Kaneko
parent 37a783a30c
commit 52f8b347a0
2 changed files with 0 additions and 6 deletions

View File

@ -11401,7 +11401,6 @@ rb_node_dot2_new(struct parser_params *p, NODE *nd_beg, NODE *nd_end, const YYLT
rb_node_dot2_t *n = NODE_NEWNODE(NODE_DOT2, rb_node_dot2_t, loc);
n->nd_beg = nd_beg;
n->nd_end = nd_end;
n->not_used = 0;
return n;
}
@ -11412,7 +11411,6 @@ rb_node_dot3_new(struct parser_params *p, NODE *nd_beg, NODE *nd_end, const YYLT
rb_node_dot3_t *n = NODE_NEWNODE(NODE_DOT3, rb_node_dot3_t, loc);
n->nd_beg = nd_beg;
n->nd_end = nd_end;
n->not_used = 0;
return n;
}

View File

@ -920,7 +920,6 @@ typedef struct RNode_DOT2 {
struct RNode *nd_beg;
struct RNode *nd_end;
VALUE not_used;
} rb_node_dot2_t;
typedef struct RNode_DOT3 {
@ -928,7 +927,6 @@ typedef struct RNode_DOT3 {
struct RNode *nd_beg;
struct RNode *nd_end;
VALUE not_used;
} rb_node_dot3_t;
typedef struct RNode_FLIP2 {
@ -936,7 +934,6 @@ typedef struct RNode_FLIP2 {
struct RNode *nd_beg;
struct RNode *nd_end;
VALUE not_used;
} rb_node_flip2_t;
typedef struct RNode_FLIP3 {
@ -944,7 +941,6 @@ typedef struct RNode_FLIP3 {
struct RNode *nd_beg;
struct RNode *nd_end;
VALUE not_used;
} rb_node_flip3_t;
typedef struct RNode_SELF {