diff options
author | Andreas Rumpf <rumpf_a@web.de> | 2015-03-26 02:19:33 +0100 |
---|---|---|
committer | Andreas Rumpf <rumpf_a@web.de> | 2015-03-26 02:19:33 +0100 |
commit | 95ccb3c035921f9c7247f1d5ca5e6ce35cdaaf3d (patch) | |
tree | 151cd99d7eaa4d6ebf95d8a5ba6e2824c26f37b2 | |
parent | 5d63ecb3a474a157f46019770c8288bb134e9aa9 (diff) | |
parent | 450c2c528779420c591489a561c08c008d2a8a7a (diff) | |
download | Nim-95ccb3c035921f9c7247f1d5ca5e6ce35cdaaf3d.tar.gz |
Merge pull request #2413 from def-/fix-gcusebitvectors
Fix proc call in gc_ms
-rw-r--r-- | lib/system/gc_ms.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/system/gc_ms.nim b/lib/system/gc_ms.nim index 12eb97b1e..e287bf5d9 100644 --- a/lib/system/gc_ms.nim +++ b/lib/system/gc_ms.nim @@ -165,7 +165,7 @@ proc initGC() = init(gch.tempStack) init(gch.additionalRoots) when withBitvectors: - Init(gch.allocated) + init(gch.allocated) init(gch.marked) var |