Skip to content

Commit

Permalink
Merge branch 'Watson1978-create_id'
Browse files Browse the repository at this point in the history
  • Loading branch information
hsbt committed Dec 1, 2023
2 parents 5ab53a4 + 173cb3a commit 8741567
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ext/json/ext/parser/parser.c
Expand Up @@ -1902,7 +1902,7 @@ static VALUE cParser_initialize(int argc, VALUE *argv, VALUE self)
json->max_nesting = 100;
json->allow_nan = 0;
json->create_additions = 0;
json->create_id = rb_funcall(mJSON, i_create_id, 0);
json->create_id = Qnil;
json->object_class = Qnil;
json->array_class = Qnil;
json->decimal_class = Qnil;
Expand Down
2 changes: 1 addition & 1 deletion ext/json/ext/parser/parser.rl
Expand Up @@ -797,7 +797,7 @@ static VALUE cParser_initialize(int argc, VALUE *argv, VALUE self)
json->max_nesting = 100;
json->allow_nan = 0;
json->create_additions = 0;
json->create_id = rb_funcall(mJSON, i_create_id, 0);
json->create_id = Qnil;
json->object_class = Qnil;
json->array_class = Qnil;
json->decimal_class = Qnil;
Expand Down

0 comments on commit 8741567

Please sign in to comment.