mirror of
https://github.com/ruby/ruby.git
synced 2025-09-15 16:44:01 +02:00
Using NIL_P macro instead of == Qnil
This commit is contained in:
parent
fb03598666
commit
dc9112cf10
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
4
range.c
4
range.c
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue