Replace RBOOL macro

This commit is contained in:
S-H-GAMELINKS 2021-08-31 20:30:35 +09:00 committed by Nobuyoshi Nakada
parent 8f752c95d2
commit bdd6d8746f
Notes: git 2021-09-05 23:01:54 +09:00
15 changed files with 43 additions and 43 deletions

View file

@ -3369,7 +3369,7 @@ rb_arith_seq_new(VALUE obj, VALUE meth, int argc, VALUE const *argv,
rb_ivar_set(aseq, id_begin, beg);
rb_ivar_set(aseq, id_end, end);
rb_ivar_set(aseq, id_step, step);
rb_ivar_set(aseq, id_exclude_end, excl ? Qtrue : Qfalse);
rb_ivar_set(aseq, id_exclude_end, RBOOL(excl));
return aseq;
}