summaryrefslogtreecommitdiffhomepage
path: root/doc
diff options
context:
space:
mode:
authorYukihiro "Matz" Matsumoto <[email protected]>2017-07-27 15:47:03 +0900
committerYukihiro "Matz" Matsumoto <[email protected]>2017-07-27 16:14:03 +0900
commit1e41026b28edbb6423b65588d5aeb270df2e0032 (patch)
tree3672222c23e7fce5ca6e756258f737f2328ee117 /doc
parentf26d00d9e81b102fababdd9c0d1b886fab30e35a (diff)
downloadmruby-1e41026b28edbb6423b65588d5aeb270df2e0032.tar.gz
mruby-1e41026b28edbb6423b65588d5aeb270df2e0032.zip
Always use `MRB_USE_IV_SEGLIST`.
Diffstat (limited to 'doc')
-rw-r--r--doc/guides/mrbconf.md11
1 files changed, 0 insertions, 11 deletions
diff --git a/doc/guides/mrbconf.md b/doc/guides/mrbconf.md
index fabd7208b..eb27ad102 100644
--- a/doc/guides/mrbconf.md
+++ b/doc/guides/mrbconf.md
@@ -122,20 +122,9 @@ largest value of required alignment.
* If defined `Float` will be a mruby object with `RBasic`.
## Instance variable configuration.
-`MRB_USE_IV_SEGLIST`
-* If defined enable segmented list in instance variable table instead of khash.
-* Segmented list is a linked list of key and value segments.
-* It will linear search instead of hash search.
-
`MRB_SEGMENT_SIZE`
* Default value is `4`.
* Specifies size of each segment in segment list.
-* Ignored when `MRB_USE_IV_SEGLIST` isn't defined.
-
-`MRB_IVHASH_INIT_SIZE`
-* Default value is `8`.
-* Specifies initial size for instance variable table.
-* Ignored when `MRB_USE_IV_SEGLIST` is defined.
## Other configuration.
`MRB_UTF8_STRING`