summaryrefslogtreecommitdiffhomepage
path: root/include/mrbconf.h
diff options
context:
space:
mode:
authorYukihiro Matsumoto <[email protected]>2012-07-30 23:55:35 +0900
committerYukihiro Matsumoto <[email protected]>2012-07-30 23:55:35 +0900
commit515862cc015097144a003aa0f253af3a58dbab37 (patch)
tree7c5b07443fc7d0326cadceba2a82367168f2bf99 /include/mrbconf.h
parent857370c2b703a7158dfde5766e4b3b6eedcff10c (diff)
downloadmruby-515862cc015097144a003aa0f253af3a58dbab37.tar.gz
mruby-515862cc015097144a003aa0f253af3a58dbab37.zip
khash refactoring; no more MRB_KHASH_INITIAL_SIZE
Diffstat (limited to 'include/mrbconf.h')
-rw-r--r--include/mrbconf.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/mrbconf.h b/include/mrbconf.h
index f5f8de969..955e6538b 100644
--- a/include/mrbconf.h
+++ b/include/mrbconf.h
@@ -13,15 +13,15 @@
/* add -DMRB_USE_FLOAT to use float instead of double for floating point numbers */
//#define MRB_USE_FLOAT
-/* initial size of khash table bucket; should be power of 2 (n >= 8) */
-//#define MRB_INITIAL_HASH_SIZE 32
-
/* argv max size in mrb_funcall */
//#define MRB_FUNCALL_ARGC_MAX 16
/* number of object per heap page */
//#define MRB_HEAP_PAGE_SIZE 1024
+/* default size of khash table bucket */
+//#define KHASH_DEFAULT_SIZE 32
+
/* -DDISABLE_XXXX to drop the feature */
#define DISABLE_REGEXP /* regular expression classes */
//#define DISABLE_SPRINTF /* Kernel.sprintf method */