ruby-changes:62523
From: Aaron <ko1@a...>
Date: Tue, 4 Aug 2020 09:01:34 +0900 (JST)
Subject: [ruby-changes:62523] e8edc34f0a (master): Remove unused struct member
https://git.ruby-lang.org/ruby.git/commit/?id=e8edc34f0a From e8edc34f0abe176b24975a1fed1f2c3782f0a252 Mon Sep 17 00:00:00 2001 From: Aaron Patterson <tenderlove@r...> Date: Mon, 3 Aug 2020 15:31:25 -0700 Subject: 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 diff --git a/node.h b/node.h index b6fefb4..bc0dcb2 100644 --- a/node.h +++ b/node.h @@ -401,7 +401,6 @@ typedef struct rb_ast_body_struct { https://github.com/ruby/ruby/blob/trunk/node.h#L401 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); -- cgit v0.10.2 -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/