Merge pull request #4516 from shuujii/fix-struct-RRange-overflow-on-32-bit-CPU-with-MRB_NAN_BOXING

Fix `struct RRange` overflow on 32-bit CPU with `MRB_NAN_BOXING`
This commit is contained in:
Yukihiro "Matz" Matsumoto
2019-06-25 22:44:31 +09:00
committed by GitHub
+1 -1
View File
@@ -14,7 +14,7 @@
*/
MRB_BEGIN_DECL
#if defined(MRB_NAN_BOXING) || defined(MRB_WORD_BOXING)
#if defined(MRB_NAN_BOXING) && defined(MRB_64BIT) || defined(MRB_WORD_BOXING)
# define MRB_RANGE_EMBED
#endif