mirror of
https://github.com/justinethier/cyclone.git
synced 2025-05-23 20:15:05 +02:00
Fix copy&paste error
This commit is contained in:
parent
8714206b9f
commit
ea8a09f184
1 changed files with 1 additions and 1 deletions
|
@ -653,7 +653,7 @@ int equal(object x, object y)
|
|||
// ((integer_type *) x)->value == ((integer_type *) y)->value);
|
||||
case complex_num_tag:
|
||||
return (is_object_type(y) &&
|
||||
type_of(y) == double_tag &&
|
||||
type_of(y) == complex_num_tag &&
|
||||
((complex_num_type *) x)->value == ((complex_num_type *) y)->value);
|
||||
|
||||
default:
|
||||
|
|
Loading…
Add table
Reference in a new issue