summaryrefslogtreecommitdiff
path: root/mjit_compiler.c
diff options
context:
space:
mode:
authorTakashi Kokubun <takashikkbn@gmail.com>2022-09-23 23:13:43 -0700
committerTakashi Kokubun <takashikkbn@gmail.com>2022-09-23 23:13:43 -0700
commit08476c45799deeba0e76be54e160e87330e8cf9e (patch)
treec306d9ee9f802f2ff141b1145d27ed9c27cbf10d /mjit_compiler.c
parentb0e3ee454d48748b4aadf1aaedd52670370d503b (diff)
Remove unneeded semicolons
Diffstat (limited to 'mjit_compiler.c')
-rw-r--r--mjit_compiler.c6
1 files 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"