Fix compilation under Intel C++ 18.0 on Windows

pull/397/head
RaptorFactor 2017-05-22 18:05:45 -07:00
parent 39efcc27b4
commit bc2f1ff654
1 changed files with 1 additions and 1 deletions

View File

@ -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)
{