diff options
| author | Yukihiro "Matz" Matsumoto <[email protected]> | 2018-11-19 09:30:15 +0900 |
|---|---|---|
| committer | Yukihiro "Matz" Matsumoto <[email protected]> | 2018-11-19 09:30:15 +0900 |
| commit | 25d390d6ccf3da7a853ddd8272dd318ecadca316 (patch) | |
| tree | d5a5258eaabe8041bb40ab15c9ed78a27a533d5f /include | |
| parent | 180b73fec437e21e2e862fc47bff9ad07f581d2c (diff) | |
| download | mruby-25d390d6ccf3da7a853ddd8272dd318ecadca316.tar.gz mruby-25d390d6ccf3da7a853ddd8272dd318ecadca316.zip | |
Improve Hash table using variable sized segments.
Diffstat (limited to 'include')
| -rw-r--r-- | include/mruby/hash.h | 2 |
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))) |
