summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoryui-knk <yui-knk@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-01-08 12:39:58 +0000
committeryui-knk <yui-knk@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-01-08 12:39:58 +0000
commit991c45c56e01d92a8c8be7a5654d7071c30917a5 (patch)
treee53fbfd2683d77c15dc311cf6737a88b334e46fc
parent47cf2fd7ec0b0deafe209b92f94452e64869b25c (diff)
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
-rw-r--r--parse.y4
1 files 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 */