summaryrefslogtreecommitdiffhomepage
path: root/include
diff options
context:
space:
mode:
authorYukihiro "Matz" Matsumoto <[email protected]>2013-03-30 07:23:24 -0700
committerYukihiro "Matz" Matsumoto <[email protected]>2013-03-30 07:23:24 -0700
commitf475da9bf9621ce244251a00a9eb3604bf5203fc (patch)
tree9d160eb3b2f066a379af92770ccabaec3dffbab0 /include
parent918d199efa680626c342e24e2d29b6685ed7a5f3 (diff)
parent4ac352df21c0c188bd656d49fa8b21915be89e80 (diff)
downloadmruby-f475da9bf9621ce244251a00a9eb3604bf5203fc.tar.gz
mruby-f475da9bf9621ce244251a00a9eb3604bf5203fc.zip
Merge pull request #871 from monaka/pr-remove-bit-field-in-mrb_value
Remove the bit-field by mrb_value.tt
Diffstat (limited to 'include')
-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 1815f0562..1cc5263ad 100644
--- a/include/mruby/value.h
+++ b/include/mruby/value.h
@@ -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