diff options
author | Araq <rumpf_a@web.de> | 2012-07-14 14:03:13 +0200 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2012-07-14 14:03:13 +0200 |
commit | b4084df434dc22d61960bcd6374d34af27bba888 (patch) | |
tree | de6689dc1e0465117345f5d0d3bc6b03817cb8a2 /compiler/sigmatch.nim | |
parent | 100596119202e7a0d543be17e5c08372fe4238cd (diff) | |
download | Nim-b4084df434dc22d61960bcd6374d34af27bba888.tar.gz |
improved unsigned support
Diffstat (limited to 'compiler/sigmatch.nim')
-rwxr-xr-x | compiler/sigmatch.nim | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/compiler/sigmatch.nim b/compiler/sigmatch.nim index b5d4eca8f..1b60450bb 100755 --- a/compiler/sigmatch.nim +++ b/compiler/sigmatch.nim @@ -64,7 +64,8 @@ proc initCandidate*(c: var TCandidate, callee: PType) = proc put(t: var TIdTable, key, val: PType) {.inline.} = IdTablePut(t, key, val) -proc initCandidate*(c: var TCandidate, callee: PSym, binding: PNode, calleeScope = -1) = +proc initCandidate*(c: var TCandidate, callee: PSym, binding: PNode, + calleeScope = -1) = initCandidateAux(c, callee.typ) c.calleeSym = callee c.calleeScope = calleeScope |