Fix an issue with Windows x64. Including the rapidjson reader.h requires <intrin.h> to be included or _umul128 will be undefined.

This commit is contained in:
Erik Martin 2015-01-07 13:50:23 -05:00
parent 879def80f2
commit 4b4f726dd8

4
include/rapidjson/internal/biginteger.h Normal file → Executable file
View File

@ -23,6 +23,10 @@
#include "../rapidjson.h" #include "../rapidjson.h"
#if defined(_MSC_VER) && defined(_M_AMD64)
#include <intrin.h> // for _umul128
#endif
RAPIDJSON_NAMESPACE_BEGIN RAPIDJSON_NAMESPACE_BEGIN
namespace internal { namespace internal {