diff --git a/compiler/types.nim b/compiler/types.nim index f5fb6555b2..fc96810b03 100644 --- a/compiler/types.nim +++ b/compiler/types.nim @@ -754,9 +754,7 @@ proc sameObjectTypes*(a, b: PType): bool = # specialized for efficiency (sigmatch uses it) IfFastObjectTypeCheckFailed(a, b): var c = initSameTypeClosure() - result = sameTypeAux(a, b, c) - - + result = sameTypeAux(a, b, c) proc sameDistinctTypes*(a, b: PType): bool {.inline.} = result = sameObjectTypes(a, b)