diff options
author | 2019-01-06 18:17:35 -0800 | |
---|---|---|
committer | 2019-01-06 18:17:35 -0800 | |
commit | d199ec2657e011ff6ca8e5cb0c43fd3f304a292e (patch) | |
tree | 4c5b2961669eb27da04a87fc837420c91dd7ca4a /3rdparty/lzma | |
parent | 0f0e8853f33bef49bc6f5bd8b53444d209699e44 (diff) |
fix MSVC (llvm toolset) compile (nw)
- conditionally uninitialised variables in PortAudio;
- floats passed to attotime;
- unsigned->signed enums (this one is technically still wrong)
Diffstat (limited to '3rdparty/lzma')
-rw-r--r-- | 3rdparty/lzma/C/AesOpt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/3rdparty/lzma/C/AesOpt.c b/3rdparty/lzma/C/AesOpt.c index 10a8fb25c51..8234f0d1465 100644 --- a/3rdparty/lzma/C/AesOpt.c +++ b/3rdparty/lzma/C/AesOpt.c @@ -6,7 +6,7 @@ #include "CpuArch.h" #ifdef MY_CPU_X86_OR_AMD64 -#if _MSC_VER >= 1500 +#if _MSC_VER >= 1500 && !defined(__clang__) #define USE_INTEL_AES #endif #endif |