From 991c45c56e01d92a8c8be7a5654d7071c30917a5 Mon Sep 17 00:00:00 2001 From: yui-knk Date: Mon, 8 Jan 2018 12:39:58 +0000 Subject: [PATCH] parse.y (remove_duplicate_keys): Remove a not used argument git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@61689 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- parse.y | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/parse.y b/parse.y index 2ba6925816..c928ca5e5f 100644 --- a/parse.y +++ b/parse.y @@ -10486,7 +10486,7 @@ append_literal_keys(st_data_t k, st_data_t v, st_data_t h) } static NODE * -remove_duplicate_keys(struct parser_params *parser, NODE *hash, const YYLTYPE *location) +remove_duplicate_keys(struct parser_params *parser, NODE *hash) { st_table *literal_keys = st_init_numtable_with_size(hash->nd_alen / 2); NODE *result = 0; @@ -10521,7 +10521,7 @@ remove_duplicate_keys(struct parser_params *parser, NODE *hash, const YYLTYPE *l static NODE * new_hash_gen(struct parser_params *parser, NODE *hash, const YYLTYPE *location) { - if (hash) hash = remove_duplicate_keys(parser, hash, location); + if (hash) hash = remove_duplicate_keys(parser, hash); return NEW_HASH(hash, location); } #endif /* !RIPPER */