diff options
author | S-H-GAMELINKS <[email protected]> | 2024-09-24 12:21:15 +0900 |
---|---|---|
committer | Nobuyoshi Nakada <[email protected]> | 2024-09-26 19:20:57 +0900 |
commit | 3e742579bb5626e1d48c2c2e65cd448399deae9b (patch) | |
tree | f62a24726449c064506314a78412177a49b5fcee /ruby_parser.c | |
parent | 2a65f4c90713c3738993aba34b03eeed02ac7a87 (diff) |
Remove rb_str_cat for parser
Notes
Notes:
Merged: https://github.com/ruby/ruby/pull/11672
Diffstat (limited to 'ruby_parser.c')
-rw-r--r-- | ruby_parser.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/ruby_parser.c b/ruby_parser.c index 28e63886af..a965fc44dc 100644 --- a/ruby_parser.c +++ b/ruby_parser.c @@ -371,7 +371,6 @@ static const rb_parser_config_t rb_global_parser_config = { .str_catf = rb_str_catf, .str_cat_cstr = rb_str_cat_cstr, - .str_cat = rb_str_cat, .str_resize = rb_str_resize, .str_new = rb_str_new, .str_new_cstr = rb_str_new_cstr, |