diff options
| author | Yukihiro Matsumoto <[email protected]> | 2012-04-30 00:27:02 +0900 |
|---|---|---|
| committer | Yukihiro Matsumoto <[email protected]> | 2012-04-30 00:27:02 +0900 |
| commit | fc66d308a1485f01607310e2770231cc8ac251bb (patch) | |
| tree | cebabb01617e2f9797d92dff1317183907cf8e56 /include | |
| parent | 943bef2d7c90ced53f8f22b2eb13877478cf2f0f (diff) | |
| download | mruby-fc66d308a1485f01607310e2770231cc8ac251bb.tar.gz mruby-fc66d308a1485f01607310e2770231cc8ac251bb.zip | |
remove bit field from mrb_value
Diffstat (limited to 'include')
| -rw-r--r-- | include/mruby.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/mruby.h b/include/mruby.h index 4bb1fd2ac..bbca91c0f 100644 --- a/include/mruby.h +++ b/include/mruby.h @@ -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 |
