Unverified Commit 67a17cfd authored by Milo Yip's avatar Milo Yip Committed by GitHub

Merge pull request #1207 from vim2meta/master

Ensure a preprocessor directive is only applied to MSVC.
parents f0177eb9 de6681e2
......@@ -17,7 +17,7 @@
#include "../rapidjson.h"
#if defined(_MSC_VER) && defined(_M_AMD64)
#if defined(_MSC_VER) && !__INTEL_COMPILER && defined(_M_AMD64)
#include <intrin.h> // for _umul128
#pragma intrinsic(_umul128)
#endif
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment