Skip to content

Commit

Permalink
Merge pull request #968 from TomaszNo/icc-preprocessor-guard
Browse files Browse the repository at this point in the history
Intel C++ Compiler preprocessor guard for #pragma intrinsic - diyfp.h
  • Loading branch information
miloyip committed Jun 28, 2017
2 parents 77ae0b9 + 294ad93 commit 2f45319
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/rapidjson/internal/diyfp.h
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

#include "../rapidjson.h"

#if defined(_MSC_VER) && defined(_M_AMD64)
#if defined(_MSC_VER) && defined(_M_AMD64) && !defined(__INTEL_COMPILER)
#include <intrin.h>
#pragma intrinsic(_BitScanReverse64)
#pragma intrinsic(_umul128)
Expand Down

0 comments on commit 2f45319

Please sign in to comment.