summaryrefslogtreecommitdiffhomepage
path: root/include
diff options
context:
space:
mode:
authorYukihiro "Matz" Matsumoto <[email protected]>2018-11-19 09:30:15 +0900
committerYukihiro "Matz" Matsumoto <[email protected]>2018-11-19 09:30:15 +0900
commit25d390d6ccf3da7a853ddd8272dd318ecadca316 (patch)
treed5a5258eaabe8041bb40ab15c9ed78a27a533d5f /include
parent180b73fec437e21e2e862fc47bff9ad07f581d2c (diff)
downloadmruby-25d390d6ccf3da7a853ddd8272dd318ecadca316.tar.gz
mruby-25d390d6ccf3da7a853ddd8272dd318ecadca316.zip
Improve Hash table using variable sized segments.
Diffstat (limited to 'include')
-rw-r--r--include/mruby/hash.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/mruby/hash.h b/include/mruby/hash.h
index dacdd9376..7811894ae 100644
--- a/include/mruby/hash.h
+++ b/include/mruby/hash.h
@@ -18,7 +18,7 @@ MRB_BEGIN_DECL
struct RHash {
MRB_OBJECT_HEADER;
struct iv_tbl *iv;
- struct seglist *ht;
+ struct htable *ht;
};
#define mrb_hash_ptr(v) ((struct RHash*)(mrb_ptr(v)))