Commit f475da9b authored by Yukihiro "Matz" Matsumoto's avatar Yukihiro "Matz" Matsumoto

Merge pull request #871 from monaka/pr-remove-bit-field-in-mrb_value

Remove the bit-field by mrb_value.tt
parents 918d199e 4ac352df
......@@ -42,7 +42,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
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment