1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

Remove unused struct member

I accidentally added this in 35ba2783fe,
and it's making the size of RVALUE be too big. I'm sorry! orz
This commit is contained in:
Aaron Patterson 2020-08-03 15:31:25 -07:00 committed by Aaron Patterson
parent d8e7885012
commit e8edc34f0a
Notes: git 2020-08-04 09:01:42 +09:00

1
node.h
View file

@ -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);