mirror of
https://github.com/mruby/mruby
synced 2026-06-08 16:11:16 +00:00
Fix mrb_pool_value to keep int64 on 32 bit platforms; fix #5366
This commit is contained in:
@@ -31,9 +31,7 @@ typedef struct mrb_pool_value {
|
||||
union {
|
||||
const char *str;
|
||||
int32_t i32;
|
||||
#if defined(MRB_64BIT) || defined(MRB_INT64)
|
||||
int64_t i64;
|
||||
#endif
|
||||
#ifndef MRB_NO_FLOAT
|
||||
mrb_float f;
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user