diff options
author | Timothee Cour <timothee.cour2@gmail.com> | 2021-02-17 10:30:09 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-17 19:30:09 +0100 |
commit | 31bb67a309ae4bfdc1909c0a7c6748a534a0b00e (patch) | |
tree | 8169cc14488a083ffb2d1e8373042bdc0c0c0e73 /lib/pure/concurrency/cpuinfo.nim | |
parent | 35e14998ec97deb4efdbec9390b607c876a7a17f (diff) | |
download | Nim-31bb67a309ae4bfdc1909c0a7c6748a534a0b00e.tar.gz |
add -d:nimStrictMode in CI to keep code from regressing; fixes ConvFromXtoItselfNotNeeded, UnusedImport notes (#16764)
Diffstat (limited to 'lib/pure/concurrency/cpuinfo.nim')
-rw-r--r-- | lib/pure/concurrency/cpuinfo.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/pure/concurrency/cpuinfo.nim b/lib/pure/concurrency/cpuinfo.nim index 57d13fde3..dab5a2447 100644 --- a/lib/pure/concurrency/cpuinfo.nim +++ b/lib/pure/concurrency/cpuinfo.nim @@ -15,7 +15,7 @@ runnableExamples: include "system/inclrtl" -when not defined(windows): +when defined(linux): import posix when defined(freebsd) or defined(macosx): |