Skip to content

Commit

Permalink
Missing Bracket
Browse files Browse the repository at this point in the history
Still an issue with `Integer` in the mixed vector test
  • Loading branch information
jdunkerley committed Jan 19, 2022
1 parent c505a51 commit f735730
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -913,7 +913,7 @@ type Mixed_Types_Map_Key
r = Panic.recover (this.value.compare_to that.value)
r.catch err->
bool_check = this.value.is_a Boolean && that.value.is_a Boolean
if bool_check then if this.value then Ordering.Greater else Ordering.Less) else
if bool_check then if (this.value then Ordering.Greater else Ordering.Less) else
this_type = Meta.get_qualified_type_name this.value
that_type = Meta.get_qualified_type_name that.value
if this_type != that_type then (this_type.compare_to that_type) else
Expand Down

0 comments on commit f735730

Please sign in to comment.