summaryrefslogtreecommitdiffhomepage
path: root/include/mruby.h
diff options
context:
space:
mode:
authorYukihiro Matsumoto <[email protected]>2012-05-05 07:59:15 +0900
committerYukihiro Matsumoto <[email protected]>2012-05-05 07:59:15 +0900
commitc9a51c43bc32cdd684a0e1b64e6a8bc8dba5d70e (patch)
treecbe85ac0c0732bd503664c8415098e41b31cd809 /include/mruby.h
parent53d8339a716a5e561e4fe06ee68fffc8c22d991b (diff)
downloadmruby-c9a51c43bc32cdd684a0e1b64e6a8bc8dba5d70e.tar.gz
mruby-c9a51c43bc32cdd684a0e1b64e6a8bc8dba5d70e.zip
use int8_t for tt
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 b3d1d5fa9..b81a7aa5f 100644
--- a/include/mruby.h
+++ b/include/mruby.h
@@ -68,7 +68,7 @@ typedef struct mrb_value {
mrb_int i;
mrb_sym sym;
} value;
- enum mrb_vtype tt;
+ int8_t tt;
} mrb_value;
#define mrb_type(o) (o).tt