From 08476c45799deeba0e76be54e160e87330e8cf9e Mon Sep 17 00:00:00 2001 From: Takashi Kokubun Date: Fri, 23 Sep 2022 23:13:43 -0700 Subject: [PATCH] Remove unneeded semicolons --- mjit_compiler.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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"