From d94a870de4d58879a080f11ea89eb215d73ca900 Mon Sep 17 00:00:00 2001 From: Dominik Picheta Date: Sat, 19 Oct 2013 21:13:17 +0100 Subject: [PATCH] Fixed definition of seqShallowFlag. --- lib/system.nim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/system.nim b/lib/system.nim index d29479184f..b2d19a885f 100644 --- a/lib/system.nim +++ b/lib/system.nim @@ -849,7 +849,7 @@ const ## a string that describes the application type. Possible values: ## "console", "gui", "lib". - seqShallowFlag = 1 shl (sizeof(int)*8-1) + seqShallowFlag = low(int) proc compileOption*(option: string): bool {. magic: "CompileOption", noSideEffect.}