summary refs log tree commit diff stats
path: root/compiler/sigmatch.nim
diff options
context:
space:
mode:
authorAraq <rumpf_a@web.de>2012-07-14 14:03:13 +0200
committerAraq <rumpf_a@web.de>2012-07-14 14:03:13 +0200
commitb4084df434dc22d61960bcd6374d34af27bba888 (patch)
treede6689dc1e0465117345f5d0d3bc6b03817cb8a2 /compiler/sigmatch.nim
parent100596119202e7a0d543be17e5c08372fe4238cd (diff)
downloadNim-b4084df434dc22d61960bcd6374d34af27bba888.tar.gz
improved unsigned support
Diffstat (limited to 'compiler/sigmatch.nim')
-rwxr-xr-xcompiler/sigmatch.nim3
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