File tree Expand file tree Collapse file tree 3 files changed +0
-4
lines changed Expand file tree Collapse file tree 3 files changed +0
-4
lines changed Original file line number Diff line number Diff line change @@ -567,7 +567,6 @@ static const rb_parser_config_t rb_global_parser_config = {
567
567
.qnil = Qnil ,
568
568
.qtrue = Qtrue ,
569
569
.qfalse = Qfalse ,
570
- .qundef = Qundef ,
571
570
.eArgError = arg_error ,
572
571
.long2int = rb_long2int ,
573
572
Original file line number Diff line number Diff line change @@ -1408,7 +1408,6 @@ typedef struct rb_parser_config_struct {
1408
1408
VALUE qnil ;
1409
1409
VALUE qtrue ;
1410
1410
VALUE qfalse ;
1411
- VALUE qundef ;
1412
1411
VALUE (* eArgError )(void );
1413
1412
int (* long2int )(long );
1414
1413
Original file line number Diff line number Diff line change 245
245
#define Qtrue p->config->qtrue
246
246
#undef Qfalse
247
247
#define Qfalse p->config->qfalse
248
- #undef Qundef
249
- #define Qundef p->config->qundef
250
248
#define rb_eArgError p->config->eArgError()
251
249
#undef rb_long2int
252
250
#define rb_long2int p->config->long2int
You can’t perform that action at this time.
0 commit comments