Skip to content

Commit de6681e

Browse files
author
John
committed
ensure the pragma is only applied to MSVC
1 parent f0177eb commit de6681e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/rapidjson/internal/biginteger.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
#include "../rapidjson.h"
1919

20-
#if defined(_MSC_VER) && defined(_M_AMD64)
20+
#if defined(_MSC_VER) && !__INTEL_COMPILER && defined(_M_AMD64)
2121
#include <intrin.h> // for _umul128
2222
#pragma intrinsic(_umul128)
2323
#endif

0 commit comments

Comments
 (0)