summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/ruby/st.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/include/ruby/st.h b/include/ruby/st.h
index dbb0de45a8..3c48b3f8d2 100644
--- a/include/ruby/st.h
+++ b/include/ruby/st.h
@@ -96,7 +96,10 @@ struct st_table {
struct st_table_entry **bins;
struct st_table_entry *head, *tail;
} big;
- struct st_packed_bins *packed;
+ struct {
+ struct st_packed_entry *entries;
+ st_index_t real_entries;
+ } packed;
} as;
};