Merge pull request #222 from ez1222/master

Fix an issue with building a reader on Windows x64.
This commit is contained in:
Milo Yip 2015-01-08 12:06:44 +08:00
commit 8c8ce36957

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

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