Skip to content

Commit

Permalink
Remove unneeded semicolons
Browse files Browse the repository at this point in the history
  • Loading branch information
k0kubun committed Sep 24, 2022
1 parent b0e3ee4 commit 08476c4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions mjit_compiler.c
Expand Up @@ -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"

Expand Down

0 comments on commit 08476c4

Please sign in to comment.