diff options
-rw-r--r-- | ruby_parser.c | 1 | ||||
-rw-r--r-- | rubyparser.h | 1 | ||||
-rw-r--r-- | universal_parser.c | 2 |
3 files changed, 0 insertions, 4 deletions
@@ -567,7 +567,6 @@ static const rb_parser_config_t rb_global_parser_config = { .qnil = Qnil, .qtrue = Qtrue, .qfalse = Qfalse, - .qundef = Qundef, .eArgError = arg_error, .long2int = rb_long2int, @@ -1408,7 +1408,6 @@ typedef struct rb_parser_config_struct { VALUE qnil; VALUE qtrue; VALUE qfalse; - VALUE qundef; VALUE (*eArgError)(void); int (*long2int)(long); @@ -245,8 +245,6 @@ #define Qtrue p->config->qtrue #undef Qfalse #define Qfalse p->config->qfalse -#undef Qundef -#define Qundef p->config->qundef #define rb_eArgError p->config->eArgError() #undef rb_long2int #define rb_long2int p->config->long2int |