Remove bit-field.

This commit is contained in:
Masaki Muranaka
2013-02-22 21:14:22 +09:00
parent bc46c374b4
commit 4ac352df21
+1 -1
View File
@@ -43,7 +43,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