Only test for __APPLE__ here to avoid conflicts with Linux (and maybe Windows)
authorcarlsonsolutiondesign <john@carlsonsolutiondsign.com>
Thu, 17 Dec 2015 22:02:06 +0000 (17:02 -0500)
committercarlsonsolutiondesign <john@carlsonsolutiondsign.com>
Thu, 17 Dec 2015 22:02:06 +0000 (17:02 -0500)
contrib/rapidjson/include/rapidjson/document.h

index 45b2708..e90d6a3 100644 (file)
@@ -545,6 +545,7 @@ public:
             flags_ |= kIntFlag;
     }
 
+#if defined(__APPLE__)
     //! Constructor for unsigned long value.
     explicit GenericValue(unsigned long u64) RAPIDJSON_NOEXCEPT : data_(), flags_(kNumberUint64Flag) {
         data_.n.u64 = u64;
@@ -555,6 +556,7 @@ public:
         if (!(u64 & RAPIDJSON_UINT64_C2(0xFFFFFFFF, 0x80000000)))
             flags_ |= kIntFlag;
     }
+#endif
 
     //! Constructor for double value.
     explicit GenericValue(double d) RAPIDJSON_NOEXCEPT : data_(), flags_(kNumberDoubleFlag) { data_.n.d = d; }