Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/miloyip/rapidjson.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMilo Yip <miloyip@gmail.com>2015-01-08 07:06:44 +0300
committerMilo Yip <miloyip@gmail.com>2015-01-08 07:06:44 +0300
commit8c8ce3695703fe3be9cf7ae9dd9498e4dcb34994 (patch)
treef38eb18b4ddf096bbf4defa748354ad28b837704 /include
parent879def80f2e466cdf4c86dc7e53ea2dd4cafaea0 (diff)
parent4b4f726dd810967498b81ef05f8ed62f04384968 (diff)
Merge pull request #222 from ez1222/master
Fix an issue with building a reader on Windows x64.
Diffstat (limited to 'include')
-rwxr-xr-x[-rw-r--r--]include/rapidjson/internal/biginteger.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/include/rapidjson/internal/biginteger.h b/include/rapidjson/internal/biginteger.h
index 06a442b5..72acfc38 100644..100755
--- a/include/rapidjson/internal/biginteger.h
+++ b/include/rapidjson/internal/biginteger.h
@@ -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 {