diff options
author | Andreas Rumpf <rumpf_a@web.de> | 2019-03-15 17:51:45 +0100 |
---|---|---|
committer | Andreas Rumpf <rumpf_a@web.de> | 2019-03-15 17:51:52 +0100 |
commit | 328901757a2bb5d482afafdd0e45bd54355c90b5 (patch) | |
tree | cce0dbf693a7ca69dadef69ec83398dd1d1192cf /lib | |
parent | ed878014be25b523d32b326b4a73d164ad1f9e73 (diff) | |
download | Nim-328901757a2bb5d482afafdd0e45bd54355c90b5.tar.gz |
make DLLs tests green again
Diffstat (limited to 'lib')
-rw-r--r-- | lib/system/ansi_c.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/system/ansi_c.nim b/lib/system/ansi_c.nim index 47d30886c..05580ea95 100644 --- a/lib/system/ansi_c.nim +++ b/lib/system/ansi_c.nim @@ -11,7 +11,7 @@ # and definitions of Ansi C types in Nim syntax # All symbols are prefixed with 'c_' to avoid ambiguities -{.push hints:off} +{.push hints:off, stack_trace: off, profiler: off.} proc c_memchr(s: pointer, c: cint, n: csize): pointer {. importc: "memchr", header: "<string.h>".} |