summaryrefslogtreecommitdiff
path: root/rubyparser.h
diff options
context:
space:
mode:
authoryui-knk <spiketeika@gmail.com>2023-09-27 21:32:00 +0900
committerYuichiro Kaneko <spiketeika@gmail.com>2023-09-30 10:27:39 +0900
commitef37bdeb4d6d70beba4fb6862064855472d3d157 (patch)
treed5eef7ba3463edd8520059445a843276eb785633 /rubyparser.h
parent443099377f8cdde96a22bf2291a7373a683e3790 (diff)
Remove not used fields from AND, OR
Diffstat (limited to 'rubyparser.h')
-rw-r--r--rubyparser.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/rubyparser.h b/rubyparser.h
index 825687bd83..d698a67e15 100644
--- a/rubyparser.h
+++ b/rubyparser.h
@@ -353,7 +353,6 @@ typedef struct RNode_AND {
struct RNode *nd_1st;
struct RNode *nd_2nd;
- VALUE not_used;
} rb_node_and_t;
typedef struct RNode_OR {
@@ -361,7 +360,6 @@ typedef struct RNode_OR {
struct RNode *nd_1st;
struct RNode *nd_2nd;
- VALUE not_used;
} rb_node_or_t;
typedef struct RNode_MASGN {