1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

parse.y: use "struct rb_iseq_struct" instead of rb_iseq_t

typedef was not declared in parse.y.  Sorry.
This commit is contained in:
Yusuke Endoh 2019-10-04 02:33:39 +09:00
parent bb9604e18c
commit b732a9f8a0

View file

@ -294,7 +294,7 @@ struct parser_params {
NODE *eval_tree;
VALUE error_buffer;
VALUE debug_lines;
const rb_iseq_t *parent_iseq;
const struct rb_iseq_struct *parent_iseq;
struct {
NODE *outer, *inner, *current;
@ -12301,7 +12301,7 @@ rb_parser_new(void)
}
VALUE
rb_parser_set_context(VALUE vparser, const rb_iseq_t *base, int main)
rb_parser_set_context(VALUE vparser, const struct rb_iseq_struct *base, int main)
{
struct parser_params *p;