mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
Object#=~
warning also obeys Warning[:deprecated]
This commit is contained in:
parent
a3c5dbf291
commit
4ba9347554
1 changed files with 4 additions and 2 deletions
6
object.c
6
object.c
|
@ -1624,8 +1624,10 @@ rb_false(VALUE obj)
|
|||
static VALUE
|
||||
rb_obj_match(VALUE obj1, VALUE obj2)
|
||||
{
|
||||
rb_warn("deprecated Object#=~ is called on %"PRIsVALUE
|
||||
"; it always returns nil", rb_obj_class(obj1));
|
||||
if (rb_warning_category_enabled_p(RB_WARN_CATEGORY_DEPRECATED)) {
|
||||
rb_warn("deprecated Object#=~ is called on %"PRIsVALUE
|
||||
"; it always returns nil", rb_obj_class(obj1));
|
||||
}
|
||||
return Qnil;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue