summaryrefslogtreecommitdiff
path: root/node.h
diff options
context:
space:
mode:
authormame <mame@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-08-22 10:38:55 +0000
committermame <mame@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-08-22 10:38:55 +0000
commit52bd0d190042f739a80e76f43e7ef3cbc8ae0969 (patch)
tree706e2ea3a9a8b2d0b9e0714661a412e52377cd74 /node.h
parentc5f50296b412436e6d03d459b43eae16e6fdbbf5 (diff)
node.h (rb_ast_t): move its field mark_ary to node_buffer_t
I want to add a new field to rb_ast_t whose size is restricted because it is an imemo. This change makes one room in rb_ast_t. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@64507 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
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 4861bdfd1a..4040d07b6c 100644
--- a/node.h
+++ b/node.h
@@ -474,7 +474,6 @@ typedef struct rb_ast_body_struct {
typedef struct rb_ast_struct {
VALUE flags;
node_buffer_t *node_buffer;
- VALUE mark_ary;
rb_ast_body_t body;
} rb_ast_t;
rb_ast_t *rb_ast_new(void);