Change default mrb_value representation to MRB_WORD_BOXING.

This commit is contained in:
Yukihiro "Matz" Matsumoto
2020-08-12 23:35:20 +09:00
parent 8813ebec07
commit 66114f8332
+1 -5
View File
@@ -79,11 +79,7 @@
/* if no specific boxing type is chosen */
#if !defined(MRB_NAN_BOXING) && !defined(MRB_WORD_BOXING) && !defined(MRB_NO_BOXING)
# if defined(MRB_64BIT) && !defined(MRB_INT64)
# define MRB_NAN_BOXING
# else
# define MRB_WORD_BOXING
# endif
# define MRB_WORD_BOXING
#endif
/* add -DMRB_INT32 to use 32bit integer for mrb_int; conflict with MRB_INT64;