summaryrefslogtreecommitdiffhomepage
path: root/include/mruby.h
diff options
context:
space:
mode:
authorYukihiro Matsumoto <[email protected]>2012-08-12 01:59:18 +0900
committerYukihiro Matsumoto <[email protected]>2012-08-12 01:59:18 +0900
commitc9fe903fe15e601900ec17ae40fe82b0d2dc4978 (patch)
tree29a4455e280dbc95d060dd2b18316566df49ffb3 /include/mruby.h
parent3fe4b6414f9daa33ec238cb3f32b53b2dddeabf4 (diff)
downloadmruby-c9fe903fe15e601900ec17ae40fe82b0d2dc4978.tar.gz
mruby-c9fe903fe15e601900ec17ae40fe82b0d2dc4978.zip
now segmented list can be used as instance variable tables by -DMRB_USE_IV_SEGLIST; we still need to measure the performance and memory consumption
Diffstat (limited to 'include/mruby.h')
-rw-r--r--include/mruby.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/mruby.h b/include/mruby.h
index 353ff93f4..380c5f24c 100644
--- a/include/mruby.h
+++ b/include/mruby.h
@@ -233,7 +233,7 @@ typedef struct mrb_state {
int esize;
struct RObject *exc;
- struct kh_iv *globals;
+ struct iv_tbl *globals;
struct mrb_irep **irep;
size_t irep_len, irep_capa;