From bc2f1ff6543a38cf3030daaee3ea74227830cba1 Mon Sep 17 00:00:00 2001 From: RaptorFactor Date: Mon, 22 May 2017 18:05:45 -0700 Subject: [PATCH] Fix compilation under Intel C++ 18.0 on Windows --- crc.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crc.cpp b/crc.cpp index 52c2b0e6..d0086827 100644 --- a/crc.cpp +++ b/crc.cpp @@ -14,7 +14,7 @@ NAMESPACE_BEGIN(CryptoPP) #endif // Use inline ASM to provide the instructions when the user omits -march=native or -msse4.2 -#if (CRYPTOPP_GCC_VERSION >= 40300 || __INTEL_COMPILER >= 1000 || __SUNPRO_CC >= 0x5110 || CRYPTOPP_LLVM_CLANG_VERSION >= 20300 || CRYPTOPP_APPLE_CLANG_VERSION >= 40000) && !defined(__SSE4_2__) +#if (CRYPTOPP_GCC_VERSION >= 40300 || __INTEL_COMPILER >= 1000 || __SUNPRO_CC >= 0x5110 || CRYPTOPP_LLVM_CLANG_VERSION >= 20300 || CRYPTOPP_APPLE_CLANG_VERSION >= 40000) && !defined(__SSE4_2__) && !defined(_MSC_VER) GCC_INLINE unsigned int GCC_INLINE_ATTRIB MM_CRC32_U8(unsigned int crc, unsigned char val) {