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