summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--parse.y2
-rw-r--r--rubyparser.h4
2 files changed, 0 insertions, 6 deletions
diff --git a/parse.y b/parse.y
index 3b513d3ade..f53ab8592e 100644
--- a/parse.y
+++ b/parse.y
@@ -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;
}
diff --git a/rubyparser.h b/rubyparser.h
index 6a8a6a2577..1f138975a3 100644
--- a/rubyparser.h
+++ b/rubyparser.h
@@ -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 {