diff options
author | Nobuyoshi Nakada <[email protected]> | 2023-08-25 23:27:52 +0900 |
---|---|---|
committer | Nobuyoshi Nakada <[email protected]> | 2023-08-25 23:34:02 +0900 |
commit | fe73f9f24bd0f9c1f4059707a87c8588ca13a139 (patch) | |
tree | f4b1bc17b8db9ef52932dcd92291889bbce25d88 /ruby_parser.c | |
parent | f5c8bdaa8ab1e42329c9877794fa5e3e936b2a55 (diff) |
Replace only use of `snprintf` in parser
Notes
Notes:
Merged: https://github.com/ruby/ruby/pull/8292
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 77328d3821..6aaa867c16 100644 --- a/ruby_parser.c +++ b/ruby_parser.c @@ -774,7 +774,6 @@ rb_parser_config_initialize(rb_parser_config_t *config) config->long2int = rb_long2int; config->special_const_p = special_const_p; config->builtin_type = builtin_type; - config->snprintf = snprintf; config->node_case_when_optimizable_literal = rb_node_case_when_optimizable_literal; |