mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
Comparing nonnull argument to NULL is useless
This commit is contained in:
parent
b42fe5937a
commit
8b48b57fd8
1 changed files with 2 additions and 0 deletions
|
@ -3446,9 +3446,11 @@ rb_arithmetic_sequence_extract(VALUE obj, rb_arithmetic_sequence_components_t *c
|
||||||
VALUE
|
VALUE
|
||||||
rb_arithmetic_sequence_beg_len_step(VALUE obj, long *begp, long *lenp, long *stepp, long len, int err)
|
rb_arithmetic_sequence_beg_len_step(VALUE obj, long *begp, long *lenp, long *stepp, long len, int err)
|
||||||
{
|
{
|
||||||
|
#if !RBIMPL_HAS_ATTRIBUTE(nonnull)
|
||||||
RUBY_ASSERT(begp != NULL);
|
RUBY_ASSERT(begp != NULL);
|
||||||
RUBY_ASSERT(lenp != NULL);
|
RUBY_ASSERT(lenp != NULL);
|
||||||
RUBY_ASSERT(stepp != NULL);
|
RUBY_ASSERT(stepp != NULL);
|
||||||
|
#endif
|
||||||
|
|
||||||
rb_arithmetic_sequence_components_t aseq;
|
rb_arithmetic_sequence_components_t aseq;
|
||||||
if (!rb_arithmetic_sequence_extract(obj, &aseq)) {
|
if (!rb_arithmetic_sequence_extract(obj, &aseq)) {
|
||||||
|
|
Loading…
Add table
Reference in a new issue