diff options
author | S-H-GAMELINKS <[email protected]> | 2025-01-04 13:42:22 +0900 |
---|---|---|
committer | Nobuyoshi Nakada <[email protected]> | 2025-01-06 20:17:47 +0900 |
commit | 975461bf885b8fb791cf048ad39c79924d28e4e9 (patch) | |
tree | b3ded6314ae6514a70be109564a1fa1d52bbbbb0 /universal_parser.c | |
parent | e0591b666f763a5adc3bad0772c214e11128d81b (diff) |
Remove SYM2ID for Parser
Ruby Parser not used SYM2ID.
And sym2id property can be removed from Universal Parser.
Notes
Notes:
Merged: https://github.com/ruby/ruby/pull/12507
Diffstat (limited to 'universal_parser.c')
-rw-r--r-- | universal_parser.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/universal_parser.c b/universal_parser.c index a381f9a86b..8f499cbb07 100644 --- a/universal_parser.c +++ b/universal_parser.c @@ -107,8 +107,6 @@ #define rb_id2str p->config->id2str #undef ID2SYM #define ID2SYM p->config->id2sym -#undef SYM2ID -#define SYM2ID p->config->sym2id #define rb_str_catf p->config->str_catf #undef rb_str_cat_cstr |