summaryrefslogtreecommitdiff
path: root/node.h
diff options
context:
space:
mode:
authorAaron Patterson <tenderlove@ruby-lang.org>2020-08-03 15:31:25 -0700
committerAaron Patterson <aaron.patterson@gmail.com>2020-08-03 17:01:13 -0700
commite8edc34f0abe176b24975a1fed1f2c3782f0a252 (patch)
tree0f4c1de62c4210c2d43d554492bb57d34c7133fb /node.h
parentd8e78850122d8ddc5b2f133d5c5ffbe8fb25f44c (diff)
Remove unused struct member
I accidentally added this in 35ba2783fe6b3316a6bbc6f00bf975ad7185d6e0, and it's making the size of RVALUE be too big. I'm sorry! orz
Notes
Notes: Merged: https://github.com/ruby/ruby/pull/3388
Diffstat (limited to 'node.h')
-rw-r--r--node.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/node.h b/node.h
index b6fefb4410..bc0dcb26c5 100644
--- a/node.h
+++ b/node.h
@@ -401,7 +401,6 @@ typedef struct rb_ast_body_struct {
typedef struct rb_ast_struct {
VALUE flags;
node_buffer_t *node_buffer;
- ID *local_lists;
rb_ast_body_t body;
} rb_ast_t;
rb_ast_t *rb_ast_new(void);