diff options
author | S-H-GAMELINKS <[email protected]> | 2024-04-20 22:54:01 +0900 |
---|---|---|
committer | Yuichiro Kaneko <[email protected]> | 2024-04-21 09:55:17 +0900 |
commit | 381ce130aec150098e5e3418eb435ec7ce46820d (patch) | |
tree | a0dd43f6734cb2063f89386806ad962f1f919d6b /universal_parser.c | |
parent | f16c6ac4fdbc619ba2f9d3dd7cd3b06c736aa589 (diff) |
Remove unused functions from struct `rb_parser_config_struct`
Diffstat (limited to 'universal_parser.c')
-rw-r--r-- | universal_parser.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/universal_parser.c b/universal_parser.c index f72cd65ddb..6c90803625 100644 --- a/universal_parser.c +++ b/universal_parser.c @@ -95,9 +95,6 @@ #undef rb_ary_new_from_args #define rb_ary_new_from_args p->config->ary_new_from_args #define rb_ary_unshift p->config->ary_unshift -#undef RARRAY_LEN -#define RARRAY_LEN p->config->array_len -#define RARRAY_AREF p->config->array_aref #define rb_make_temporary_id p->config->make_temporary_id #define is_local_id p->config->is_local_id @@ -229,8 +226,6 @@ #define NIL_P p->config->nil_p #undef Qnil #define Qnil p->config->qnil -#undef Qtrue -#define Qtrue p->config->qtrue #undef Qfalse #define Qfalse p->config->qfalse #define rb_eArgError p->config->eArgError() |