mirror of
https://github.com/mruby/mruby
synced 2026-06-08 16:11:16 +00:00
vm.c: avoid bare macro constant reference. wrap it by defined().
This commit is contained in:
@@ -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");
|
||||
|
||||
Reference in New Issue
Block a user