From c9a51c43bc32cdd684a0e1b64e6a8bc8dba5d70e Mon Sep 17 00:00:00 2001 From: Yukihiro Matsumoto Date: Sat, 5 May 2012 07:59:15 +0900 Subject: use int8_t for tt --- include/mruby.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'include/mruby.h') 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 -- cgit v1.2.3