From ff58cbce94aaa001a262e6a4abc57f85113331be Mon Sep 17 00:00:00 2001 From: S-H-GAMELINKS Date: Wed, 20 May 2020 20:27:47 +0900 Subject: add static modifer for rb_hash_fetch_values func --- hash.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'hash.c') diff --git a/hash.c b/hash.c index 5e42b7013c..79fe433d20 100644 --- a/hash.c +++ b/hash.c @@ -2763,7 +2763,7 @@ rb_hash_values_at(int argc, VALUE *argv, VALUE hash) * h.fetch_values("cow", "bird") { |k| k.upcase } #=> ["bovine", "BIRD"] */ -VALUE +static VALUE rb_hash_fetch_values(int argc, VALUE *argv, VALUE hash) { VALUE result = rb_ary_new2(argc); -- cgit v1.2.3