diff options
author | Araq <rumpf_a@web.de> | 2014-08-08 02:28:35 +0200 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2014-08-08 02:28:35 +0200 |
commit | c5b94864558f7fc009de1d55dd2f4f5d610c3c23 (patch) | |
tree | 5e96c2e9ebf8b7d4aa38d867152424bf54774879 /lib/system | |
parent | 0914b489b3a792b3cc482712b63cdb303b4210f0 (diff) | |
parent | 4ce127bba732feb35e8229fa9c42e67d4cf86d9a (diff) | |
download | Nim-c5b94864558f7fc009de1d55dd2f4f5d610c3c23.tar.gz |
Merge branch 'devel' of https://github.com/Araq/Nimrod into devel
Diffstat (limited to 'lib/system')
-rw-r--r-- | lib/system/atomics.nim | 2 | ||||
-rw-r--r-- | lib/system/widestrs.nim | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/lib/system/atomics.nim b/lib/system/atomics.nim index 43b3f0438..82ec5dbde 100644 --- a/lib/system/atomics.nim +++ b/lib/system/atomics.nim @@ -7,7 +7,7 @@ # distribution, for details about the copyright. # -## Atomic operations for Nimrod. +# Atomic operations for Nimrod. {.push stackTrace:off.} const someGcc = defined(gcc) or defined(llvm_gcc) or defined(clang) diff --git a/lib/system/widestrs.nim b/lib/system/widestrs.nim index e2a5d87e9..e9673888c 100644 --- a/lib/system/widestrs.nim +++ b/lib/system/widestrs.nim @@ -7,8 +7,8 @@ # distribution, for details about the copyright. # -## Nimrod support for C/C++'s `wide strings`:idx:. This is part of the system -## module! Do not import it directly! +# Nimrod support for C/C++'s `wide strings`:idx:. This is part of the system +# module! Do not import it directly! when not defined(NimString): {.error: "You must not import this module explicitly".} |