word_boxing.h used int to represent symbols; use mrb_sym instead

This commit is contained in:
Yukihiro "Matz" Matsumoto
2014-10-03 11:02:06 +09:00
parent f03c23572d
commit 2b3675bca1
+1 -1
View File
@@ -44,7 +44,7 @@ typedef union mrb_value {
};
struct {
unsigned int sym_flag : MRB_SPECIAL_SHIFT;
int sym : (sizeof(mrb_sym) * CHAR_BIT);
mrb_sym sym : (sizeof(mrb_sym) * CHAR_BIT);
};
struct RBasic *bp;
struct RFloat *fp;