Skip to content

Commit

Permalink
Merge pull request #1207 from vim2meta/master
Browse files Browse the repository at this point in the history
Ensure a preprocessor directive is only applied to MSVC.
  • Loading branch information
miloyip committed Mar 20, 2018
2 parents f0177eb + de6681e commit 67a17cf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/rapidjson/internal/biginteger.h
Expand Up @@ -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
Expand Down

0 comments on commit 67a17cf

Please sign in to comment.