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:
Yukihiro "Matz" Matsumoto
2020-06-15 08:55:48 +09:00
parent f0c1126997
commit ee111dd175
6 changed files with 18 additions and 12 deletions
+1 -1
View File
@@ -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;