mirror of
https://github.com/ruby/ruby.git
synced 2025-08-15 13:39:04 +02:00
[Bug #18937] Coerce non-Numeric into Complex at comparisons
This commit is contained in:
parent
d0b17a4d20
commit
d5f50463c2
2 changed files with 5 additions and 2 deletions
|
@ -1121,7 +1121,10 @@ nucomp_real_p(VALUE self)
|
|||
static VALUE
|
||||
nucomp_cmp(VALUE self, VALUE other)
|
||||
{
|
||||
if (nucomp_real_p(self) && k_numeric_p(other)) {
|
||||
if (!k_numeric_p(other)) {
|
||||
return rb_num_coerce_cmp(self, other, idCmp);
|
||||
}
|
||||
if (nucomp_real_p(self)) {
|
||||
if (RB_TYPE_P(other, T_COMPLEX) && nucomp_real_p(other)) {
|
||||
get_dat2(self, other);
|
||||
return rb_funcall(adat->real, idCmp, 1, bdat->real);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue