compile.c (compile_array): undef a temporal macro

This commit is contained in:
Yusuke Endoh 2019-09-07 23:55:51 +09:00
Родитель b543f5b20f
Коммит 7cba9a8406
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -3998,7 +3998,6 @@ compile_array(rb_iseq_t *iseq, LINK_ANCHOR *const ret, const NODE *node, int pop
if ((first_chunk && stack_len == 0 && !node_tmp) || count >= min_tmp_ary_len) {
/* The literal contains only optimizable elements, or the subarray is long enough */
VALUE ary = rb_ary_tmp_new(count);
/* Create a hidden array */
@ -4041,6 +4040,7 @@ compile_array(rb_iseq_t *iseq, LINK_ANCHOR *const ret, const NODE *node, int pop
}
FLUSH_CHUNK(newarray);
#undef FLUSH_CHUNK
return 1;
}