Allow int size combinations for MRB_WORD_BOXING.

- `MRB_64BIT` and `MRB_INT32`
- `MRB_32BIT` and `MRB_INT64`
This commit is contained in:
Yukihiro "Matz" Matsumoto
2020-11-16 18:10:55 +09:00
parent 3bb419aeab
commit 3107d1caae
3 changed files with 9 additions and 9 deletions
+1 -1
View File
@@ -31,7 +31,7 @@ typedef struct mrb_pool_value {
union {
const char *str;
int32_t i32;
#ifdef MRB_64BIT
#if defined(MRB_64BIT) || defined(MRB_INT64)
int64_t i64;
#endif
mrb_float f;