mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
Remove unneeded semicolons
This commit is contained in:
parent
b0e3ee454d
commit
08476c4579
1 changed files with 3 additions and 3 deletions
|
@ -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"
|
||||
|
||||
|
|
Loading…
Reference in a new issue