diff options
author | Andreas Rumpf <rumpf_a@web.de> | 2010-02-28 23:04:18 +0100 |
---|---|---|
committer | Andreas Rumpf <rumpf_a@web.de> | 2010-02-28 23:04:18 +0100 |
commit | b559285b78bfa76533d25e77f3f61cab2427bb03 (patch) | |
tree | f418f489f307f825a934cea878921f65c0114561 /rod | |
parent | ddb718548278290a1c25c1bbfba82bc5581457a7 (diff) | |
download | Nim-b559285b78bfa76533d25e77f3f61cab2427bb03.tar.gz |
examples/lib use the new wrappers
Diffstat (limited to 'rod')
-rwxr-xr-x | rod/sigmatch.nim | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/rod/sigmatch.nim b/rod/sigmatch.nim index 1bb68ef1a..801079931 100755 --- a/rod/sigmatch.nim +++ b/rod/sigmatch.nim @@ -335,7 +335,8 @@ proc typeRel(mapping: var TIdTable, f, a: PType): TTypeRelation = result = minRel(m, result) if f.sons[0] != nil: if a.sons[0] != nil: - m = typeRel(mapping, f.sons[0], a.sons[0]) # Subtype is sufficient for return types! + m = typeRel(mapping, f.sons[0], a.sons[0]) + # Subtype is sufficient for return types! if m < isSubtype: result = isNone elif m == isSubtype: result = isConvertible else: result = minRel(m, result) |