Using NIL_P macro instead of == Qnil

This commit is contained in:
S.H 2021-10-03 22:34:45 +09:00 committed by GitHub
parent fb03598666
commit dc9112cf10
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
Notes: git 2021-10-03 22:35:06 +09:00
Merged: https://github.com/ruby/ruby/pull/4925

Merged-By: nobu <nobu@ruby-lang.org>
18 changed files with 43 additions and 43 deletions

View file

@ -642,7 +642,7 @@ bsearch_integer_range(VALUE beg, VALUE end, int excl)
satisfied = val; \
smaller = 1; \
} \
else if (v == Qfalse || v == Qnil) { \
else if (!RTEST(v)) { \
smaller = 0; \
} \
else if (rb_obj_is_kind_of(v, rb_cNumeric)) { \
@ -1952,7 +1952,7 @@ r_cover_range_p(VALUE range, VALUE beg, VALUE end, VALUE val)
}
val_max = rb_rescue2(r_call_max, val, 0, Qnil, rb_eTypeError, (VALUE)0);
if (val_max == Qnil) return FALSE;
if (NIL_P(val_max)) return FALSE;
return r_less(end, val_max) >= 0;
}