aboutsummaryrefslogtreecommitdiffstats
path: root/hash.c
diff options
context:
space:
mode:
authorngoto <ngoto@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-09-16 12:20:35 +0000
committerngoto <ngoto@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-09-16 12:20:35 +0000
commit0b826a5197f86a42b6a35dc2c35b4356435e89fd (patch)
tree22509bd6f984622445049aea4662683b0b0cd09c /hash.c
parente788b646615dde0cd6fdd2c25439118c4165c651 (diff)
downloadruby-0b826a5197f86a42b6a35dc2c35b4356435e89fd.tar.gz
* hash.c (each_pair_i_fast): Fix compile error with old version of
fcc on Solaris 10. [Bug #12768] [ruby-dev:49808] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@56171 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'hash.c')
-rw-r--r--hash.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/hash.c b/hash.c
index 401b7e4ab1..1bc93ea92c 100644
--- a/hash.c
+++ b/hash.c
@@ -1750,7 +1750,9 @@ each_pair_i(VALUE key, VALUE value)
static int
each_pair_i_fast(VALUE key, VALUE value)
{
- VALUE argv[2] = {key, value};
+ VALUE argv[2];
+ argv[0] = key;
+ argv[1] = value;
rb_yield_values2(2, argv);
return ST_CONTINUE;
}