diff options
author | Mark Flamer <mflamer@vectorworks.net> | 2013-10-21 21:33:24 -0700 |
---|---|---|
committer | Mark Flamer <mflamer@vectorworks.net> | 2013-10-21 21:33:34 -0700 |
commit | 129e72de70fef24246d230645894cc4b8d7ff38f (patch) | |
tree | b4a4a6130c72d836ba8a5298523e4c6193f833e5 /compiler | |
parent | 01e43fbe83608d4ed3ed529c995fa73e8c70bbe2 (diff) | |
download | Nim-129e72de70fef24246d230645894cc4b8d7ff38f.tar.gz |
remove extra white space
Diffstat (limited to 'compiler')
-rw-r--r-- | compiler/types.nim | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/compiler/types.nim b/compiler/types.nim index f5fb6555b..fc96810b0 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) |