Skip to content

Commit 5919a38

Browse files
Fix formatting of else
Co-Authored-By: martinholters <[email protected]>
1 parent 442bc65 commit 5919a38

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/jltypes.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -557,7 +557,8 @@ static int is_typekey_ordered(jl_value_t **key, size_t n)
557557
if (jl_is_datatype(k)) {
558558
if (!((jl_datatype_t *) k)->typekeyordered)
559559
return 0;
560-
} else {
560+
}
561+
else {
561562
if (jl_is_type(k) && k != jl_bottom_type && !wrapper_id(k))
562563
return 0; // Union or UnionAll which is not a wrapper
563564
}

0 commit comments

Comments
 (0)