Update biginteger.h (#1652)

Fix intel compiler macro
de6681e295 (commitcomment-37645051)
This commit is contained in:
Milo Yip 2020-03-05 11:06:01 +08:00 committed by GitHub
parent b16cec1a1a
commit 2bed293f48
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -17,7 +17,7 @@
#include "../rapidjson.h"
#if defined(_MSC_VER) && !__INTEL_COMPILER && defined(_M_AMD64)
#if defined(_MSC_VER) && !defined(__INTEL_COMPILER) && defined(_M_AMD64)
#include <intrin.h> // for _umul128
#pragma intrinsic(_umul128)
#endif