From 0b44744d46f7deb1d9baea5c40d6c1646f1ce6f8 Mon Sep 17 00:00:00 2001 From: normal Date: Wed, 29 Aug 2018 02:23:14 +0000 Subject: [PATCH] cont.c (rb_context_t): remove ensure_list It is unused (we use rb_execution_context_t.ensure_list instead) git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@64587 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- cont.c | 1 - 1 file changed, 1 deletion(-) diff --git a/cont.c b/cont.c index 0f68a99315..c400640dc4 100644 --- a/cont.c +++ b/cont.c @@ -110,7 +110,6 @@ typedef struct rb_context_struct { rb_execution_context_t saved_ec; rb_jmpbuf_t jmpbuf; rb_ensure_entry_t *ensure_array; - rb_ensure_list_t *ensure_list; /* Pointer to MJIT info about the continuation. */ struct mjit_cont *mjit_cont; } rb_context_t;