From 5d119f61d167738bcc314b31580c6aef15f2e822 Mon Sep 17 00:00:00 2001 From: Araq Date: Sat, 16 Feb 2013 22:53:35 +0100 Subject: preparations for a generational GC --- lib/system/mmdisp.nim | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'lib/system') diff --git a/lib/system/mmdisp.nim b/lib/system/mmdisp.nim index eee98fd52..9f37e95c1 100755 --- a/lib/system/mmdisp.nim +++ b/lib/system/mmdisp.nim @@ -1,7 +1,7 @@ # # # Nimrod's Runtime Library -# (c) Copyright 2012 Andreas Rumpf +# (c) Copyright 2013 Andreas Rumpf # # See the file "copying.txt", included in this # distribution, for details about the copyright. @@ -312,6 +312,8 @@ else: elif defined(gcMarkAndSweep): # XXX use 'compileOption' here include "system/gc_ms" + elif defined(gcGenerational): + include "system/gc_genms" else: include "system/gc" -- cgit 1.4.1-2-gfad0 tion> This repository contains the Nim compiler, Nim's stdlib, tools, and documentation. (mirror)ahoang <ahoang@tilde.institute>
summary refs log tree commit diff stats
path: root/tests/overload/toverl3.nim
blob: b3e0f2fa7cca1aa130267cabd30e277b3bbc7996 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20