mirror of
https://github.com/mruby/mruby
synced 2026-06-08 16:11:16 +00:00
Allow int size combinations for MRB_WORD_BOXING.
- `MRB_64BIT` and `MRB_INT32` - `MRB_32BIT` and `MRB_INT64`
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user