vm.c: avoid bare macro constant reference. wrap it by defined().

This commit is contained in:
Yukihiro "Matz" Matsumoto
2022-04-09 23:43:03 +09:00
parent bbf4423f4c
commit 4260ce83a9
+1 -1
View File
@@ -2384,7 +2384,7 @@ RETRY_TRY_BLOCK:
NEXT;
}
#if !defined(MRB_USE_BIGINT) || (defined(MRB_INT32) && MRB_32BIT)
#if !defined(MRB_USE_BIGINT) || (defined(MRB_INT32) && defined(MRB_32BIT))
L_INT_OVERFLOW:
{
mrb_value exc = mrb_exc_new_lit(mrb, E_RANGE_ERROR, "integer overflow");