* st.c (st_foreach): fix type of hash. not st_data_t but st_index_t.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@45266 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
3699a6035e
commit
de1f3c92e7
@ -1,3 +1,7 @@
|
|||||||
|
Tue Mar 4 20:50:59 2014 Masaya Tarui <tarui@ruby-lang.org>
|
||||||
|
|
||||||
|
* st.c (st_foreach): fix type of hash. not st_data_t but st_index_t.
|
||||||
|
|
||||||
Tue Mar 4 19:41:40 2014 Tanaka Akira <akr@fsij.org>
|
Tue Mar 4 19:41:40 2014 Tanaka Akira <akr@fsij.org>
|
||||||
|
|
||||||
* Makefile.in: ".DEFAULT" target removed because it is not for
|
* Makefile.in: ".DEFAULT" target removed because it is not for
|
||||||
|
3
st.c
3
st.c
@ -1034,7 +1034,8 @@ st_foreach(st_table *table, int (*func)(ANYARGS), st_data_t arg)
|
|||||||
|
|
||||||
if (table->entries_packed) {
|
if (table->entries_packed) {
|
||||||
for (i = 0; i < table->real_entries; i++) {
|
for (i = 0; i < table->real_entries; i++) {
|
||||||
st_data_t key, val, hash;
|
st_data_t key, val;
|
||||||
|
st_index_t hash;
|
||||||
key = PKEY(table, i);
|
key = PKEY(table, i);
|
||||||
val = PVAL(table, i);
|
val = PVAL(table, i);
|
||||||
hash = PHASH(table, i);
|
hash = PHASH(table, i);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user