remove bit field from mrb_value

This commit is contained in:
Yukihiro Matsumoto
2012-04-30 00:27:02 +09:00
parent 943bef2d7c
commit fc66d308a1
+1 -1
View File
@@ -68,7 +68,7 @@ typedef struct mrb_value {
mrb_int i;
mrb_sym sym;
} value;
enum mrb_vtype tt:8;
enum mrb_vtype tt;
} mrb_value;
#define mrb_type(o) (o).tt