1 diff --git "a/source\\include\\json\\value.h" "b/overrides\\include\\json\\value.h"
2 index b013c9b..5707260 100644
3 --- "a/source\\include\\json\\value.h"
4 +++ "b/overrides\\include\\json\\value.h"
6 # define CPPTL_JSON_H_INCLUDED
8 #if !defined(JSON_IS_AMALGAMATION)
9 -# include "forwards.h"
10 +# include "third_party/jsoncpp/source/include/json/forwards.h"
11 #endif // if !defined(JSON_IS_AMALGAMATION)
14 @@ -136,7 +136,7 @@ namespace Json {
15 typedef Json::LargestUInt LargestUInt;
16 typedef Json::ArrayIndex ArrayIndex;
18 - static const Value null;
19 + static const Value& null;
20 /// Minimum signed integer value that can be stored in a Json::Value.
21 static const LargestInt minLargestInt;
22 /// Maximum signed integer value that can be stored in a Json::Value.
23 @@ -496,10 +496,12 @@ namespace Json {
27 - int allocated_ : 1; // Notes: if declared as bool, bitfield is useless.
28 + // One-bit bitfields must be unsigned to allow storing 1.
29 + // They must be 32-bits to share storage with ValueHolder.
30 + unsigned int allocated_ : 1;
31 # ifdef JSON_VALUE_USE_INTERNAL_MAP
32 unsigned int itemIsUsed_ : 1; // used by the ValueInternalMap container.
33 - int memberNameIsStatic_ : 1; // used by the ValueInternalMap container.
34 + unsigned int memberNameIsStatic_ : 1; // used by the ValueInternalMap container.
36 CommentInfo *comments_;