diff --git a/mjit_compiler.c b/mjit_compiler.c index 3191c10d5f..82be9e7735 100644 --- a/mjit_compiler.c +++ b/mjit_compiler.c @@ -171,10 +171,10 @@ extern bool rb_splat_or_kwargs_p(const struct rb_callinfo *restrict ci); #define SIZEOF(type) RB_SIZE2NUM(sizeof(type)) #define SIGNED_TYPE_P(type) RBOOL((type)(-1) < (type)(0)) -RBIMPL_WARNING_PUSH(); -RBIMPL_WARNING_IGNORED(-Wtype-limits); // for SIGNED_TYPE_P +RBIMPL_WARNING_PUSH() +RBIMPL_WARNING_IGNORED(-Wtype-limits) // for SIGNED_TYPE_P #include "mjit_c.rbinc" -RBIMPL_WARNING_POP(); +RBIMPL_WARNING_POP() #include "mjit_compiler.rbinc"