update rapidjson

This commit is contained in:
Riccardo Spagni
2016-09-17 09:35:49 +02:00
parent 2846d0850d
commit f62ebc5c81
31 changed files with 11484 additions and 6950 deletions
+1
View File
@@ -40,6 +40,7 @@ public:
bool IsNan() const { return (u_ & kExponentMask) == kExponentMask && Significand() != 0; }
bool IsInf() const { return (u_ & kExponentMask) == kExponentMask && Significand() == 0; }
bool IsNanOrInf() const { return (u_ & kExponentMask) == kExponentMask; }
bool IsNormal() const { return (u_ & kExponentMask) != 0 || Significand() == 0; }
bool IsZero() const { return (u_ & (kExponentMask | kSignificandMask)) == 0; }