diff options
author | Charlie Barto <bartoc@umich.edu> | 2017-10-09 11:26:53 -0400 |
---|---|---|
committer | Andreas Rumpf <rumpf_a@web.de> | 2017-10-09 17:26:53 +0200 |
commit | d55e02ddf12662781cf89e2fd91473dbf7552e5a (patch) | |
tree | d311095ede43120a3d58177f8829f41a265ca9f3 /lib/windows | |
parent | 9b1a23c554209772106ac9d4f7fd5d5c062c1d17 (diff) | |
download | Nim-d55e02ddf12662781cf89e2fd91473dbf7552e5a.tar.gz |
fixes to allow the usage of clang on windows with the msvc abi and ms headers (#6442)
Diffstat (limited to 'lib/windows')
-rw-r--r-- | lib/windows/winlean.nim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/windows/winlean.nim b/lib/windows/winlean.nim index 7a221ceb1..c3229cc7b 100644 --- a/lib/windows/winlean.nim +++ b/lib/windows/winlean.nim @@ -14,8 +14,8 @@ import dynlib -when defined(vcc): - {.passC: "-DWIN32_LEAN_AND_MEAN".} + +{.passC: "-DWIN32_LEAN_AND_MEAN".} const useWinUnicode* = not defined(useWinAnsi) |