diff options
author | Dominik Picheta <dominikpicheta@googlemail.com> | 2013-10-19 21:13:17 +0100 |
---|---|---|
committer | Dominik Picheta <dominikpicheta@googlemail.com> | 2013-10-19 21:13:17 +0100 |
commit | d94a870de4d58879a080f11ea89eb215d73ca900 (patch) | |
tree | 9cbc2a95a7cc5036fc6b53b6f4d98144fd0ade43 /lib/system.nim | |
parent | 199c4d21bdb75f9faa63c3e470ac69559c14e411 (diff) | |
download | Nim-d94a870de4d58879a080f11ea89eb215d73ca900.tar.gz |
Fixed definition of seqShallowFlag.
Diffstat (limited to 'lib/system.nim')
-rw-r--r-- | lib/system.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/system.nim b/lib/system.nim index d29479184..b2d19a885 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.} |