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:
parent
bb9604e18c
commit
b732a9f8a0
1 changed files with 2 additions and 2 deletions
4
parse.y
4
parse.y
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in a new issue