From 6f015efc64aece0d25cc25686ea63dc8ffd7a340 Mon Sep 17 00:00:00 2001 From: nobu Date: Thu, 4 Apr 2019 05:26:11 +0000 Subject: [PATCH] iseq.h: Remove dead members MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * iseq.h (struct iseq_compile_data): Remove the dead ensure_node and for_iseq members. [Fix GH-2108] From: Lourens Naudé git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@67437 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- iseq.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/iseq.h b/iseq.h index f3f269b572..feb73a82ae 100644 --- a/iseq.h +++ b/iseq.h @@ -96,8 +96,6 @@ struct iseq_compile_data { struct iseq_label_data *end_label; struct iseq_label_data *redo_label; const rb_iseq_t *current_block; - VALUE ensure_node; - VALUE for_iseq; struct iseq_compile_data_ensure_node_stack *ensure_node_stack; struct iseq_compile_data_storage *storage_head; struct iseq_compile_data_storage *storage_current;