Remove rb_ary_new for parser

rb_ary_new function was not used by the parser and could be removed.
This commit is contained in:
S-H-GAMELINKS 2024-09-30 18:30:13 +09:00 committed by Nobuyoshi Nakada
parent d278d352f9
commit 5c1e43277e
Notes: git 2024-10-25 13:32:57 +00:00
3 changed files with 0 additions and 3 deletions

View file

@ -1194,7 +1194,6 @@ typedef struct rb_parser_config_struct {
VALUE (*attr_get)(VALUE obj, ID id);
/* Array */
VALUE (*ary_new)(void);
VALUE (*ary_push)(VALUE ary, VALUE elem);
VALUE (*ary_new_from_args)(long n, ...);
VALUE (*ary_unshift)(VALUE ary, VALUE item);