mirror of
https://github.com/mruby/mruby
synced 2026-06-08 16:11:16 +00:00
Clarify the use of MRB_64BIT and MRB_INT64 in dump.c and load.c.
- `MRB_64BIT`: the size of a pointer is 64 bits - `MRB_INT64`: the size of `mrb_int` is 64 bits
This commit is contained in:
@@ -32,7 +32,7 @@ typedef struct mrb_pool_value {
|
||||
union {
|
||||
const char *str;
|
||||
int32_t i32;
|
||||
#ifdef MRB_INT64
|
||||
#ifdef MRB_64BIT
|
||||
int64_t i64;
|
||||
#endif
|
||||
mrb_float f;
|
||||
|
||||
Reference in New Issue
Block a user