Revert "object.h: make GC color uint8_t that fits in 3 bits"

The change made the size of mruby data types bigger on Win.
This reverts commit afcf7fc86d.
This commit is contained in:
Yukihiro "Matz" Matsumoto
2023-06-03 16:55:57 +09:00
parent 93648fc954
commit f07281a026
+1 -1
View File
@@ -11,7 +11,7 @@
struct RClass *c; \
struct RBasic *gcnext; \
enum mrb_vtype tt:8; \
uint8_t color:3; \
uint32_t color:3; \
uint32_t flags:21
#define MRB_FLAG_TEST(obj, flag) ((obj)->flags & (flag))