diff options
author | def <dennis@felsin9.de> | 2015-03-26 01:12:45 +0100 |
---|---|---|
committer | def <dennis@felsin9.de> | 2015-03-26 01:12:45 +0100 |
commit | 450c2c528779420c591489a561c08c008d2a8a7a (patch) | |
tree | 74d23c735681b7cb219982eeaece9e1da751f7f2 | |
parent | e680e43fc2885c3af611c99c47ba5f2ac098b33e (diff) | |
download | Nim-450c2c528779420c591489a561c08c008d2a8a7a.tar.gz |
Fix proc call in gc_ms
This fixes compilation with --gc:markandsweep -d:gcUseBitvectors
-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 |