Skip to content

Commit 87ad5ca

Browse files
committed
Remove unused function from struct rb_parser_config_struct
1 parent 76732b3 commit 87ad5ca

File tree

3 files changed

+0
-4
lines changed

3 files changed

+0
-4
lines changed

ruby_parser.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -567,7 +567,6 @@ static const rb_parser_config_t rb_global_parser_config = {
567567
.qnil = Qnil,
568568
.qtrue = Qtrue,
569569
.qfalse = Qfalse,
570-
.qundef = Qundef,
571570
.eArgError = arg_error,
572571
.long2int = rb_long2int,
573572

rubyparser.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1408,7 +1408,6 @@ typedef struct rb_parser_config_struct {
14081408
VALUE qnil;
14091409
VALUE qtrue;
14101410
VALUE qfalse;
1411-
VALUE qundef;
14121411
VALUE (*eArgError)(void);
14131412
int (*long2int)(long);
14141413

universal_parser.c

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -245,8 +245,6 @@
245245
#define Qtrue p->config->qtrue
246246
#undef Qfalse
247247
#define Qfalse p->config->qfalse
248-
#undef Qundef
249-
#define Qundef p->config->qundef
250248
#define rb_eArgError p->config->eArgError()
251249
#undef rb_long2int
252250
#define rb_long2int p->config->long2int

0 commit comments

Comments
 (0)