diff options
author | Araq <rumpf_a@web.de> | 2013-02-10 15:06:25 +0100 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2013-02-10 15:06:25 +0100 |
commit | 3d7abb958de10df1fd630a24c01b5e259318b9c1 (patch) | |
tree | bda52b3073fe13ac58d314a7db4582dd326fee38 /compiler/nimrod.nim | |
parent | 0bb373142248f73dfdfc7e1112a4a2685b330136 (diff) | |
download | Nim-3d7abb958de10df1fd630a24c01b5e259318b9c1.tar.gz |
open arrays documented in the manual
Diffstat (limited to 'compiler/nimrod.nim')
-rwxr-xr-x | compiler/nimrod.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/nimrod.nim b/compiler/nimrod.nim index 5b67a10ac..911f3e566 100755 --- a/compiler/nimrod.nim +++ b/compiler/nimrod.nim @@ -72,7 +72,7 @@ proc HandleCmdLine() = when defined(GC_setMaxPause): GC_setMaxPause 2_000 -when compileOption("gc", "v2"): +when compileOption("gc", "v2") or compileOption("gc", "refc"): # the new correct mark&sweet collector is too slow :-/ GC_disableMarkAndSweep() condsyms.InitDefines() |