diff options
author | Araq <rumpf_a@web.de> | 2012-07-16 23:00:57 +0200 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2012-07-16 23:00:57 +0200 |
commit | 8d99753d6320489e4de8cf186415b0a7be8260b4 (patch) | |
tree | 2008a25dac1df222efc2c205fdf772ba5a533ecc /compiler/lists.nim | |
parent | 56b4e3ad91a0dda632ba6bab7139665a3da163d3 (diff) | |
download | Nim-8d99753d6320489e4de8cf186415b0a7be8260b4.tar.gz |
preparations for making 'closure' the default calling convention for proc types
Diffstat (limited to 'compiler/lists.nim')
-rwxr-xr-x | compiler/lists.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/lists.nim b/compiler/lists.nim index 6a1f6c650..1998581ce 100755 --- a/compiler/lists.nim +++ b/compiler/lists.nim @@ -22,7 +22,7 @@ type head*, tail*: PListEntry Counter*: int - TCompareProc* = proc (entry: PListEntry, closure: Pointer): bool + TCompareProc* = proc (entry: PListEntry, closure: Pointer): bool {.nimcall.} proc InitLinkedList*(list: var TLinkedList) = list.Counter = 0 |