From d199ec2657e011ff6ca8e5cb0c43fd3f304a292e Mon Sep 17 00:00:00 2001 From: Peter Ferrie Date: Sun, 6 Jan 2019 18:17:35 -0800 Subject: fix MSVC (llvm toolset) compile (nw) - conditionally uninitialised variables in PortAudio; - floats passed to attotime; - unsigned->signed enums (this one is technically still wrong) --- 3rdparty/lzma/C/AesOpt.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to '3rdparty/lzma/C/AesOpt.c') 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 -- cgit v1.2.3-70-g09d2