summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--include/mruby/value.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/mruby/value.h b/include/mruby/value.h
index 1dfa7b975..b5381a0cc 100644
--- a/include/mruby/value.h
+++ b/include/mruby/value.h
@@ -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