mirror of
https://github.com/open-source-parsers/jsoncpp.git
synced 2025-10-15 15:16:47 +02:00
fix bug for static init
Ugh! Static initialization of instance variables is a very bad idea. This fix is taken from the Chromium code-base. It includes their double-fix for ARM. * https://codereview.chromium.org/24984004 * https://src.chromium.org/viewvc/chrome?revision=226099&view=revision * https://code.google.com/p/webrtc/issues/detail?id=1777
This commit is contained in:
@@ -133,7 +133,7 @@ public:
|
||||
typedef Json::LargestUInt LargestUInt;
|
||||
typedef Json::ArrayIndex ArrayIndex;
|
||||
|
||||
static const Value null;
|
||||
static const Value& null;
|
||||
/// Minimum signed integer value that can be stored in a Json::Value.
|
||||
static const LargestInt minLargestInt;
|
||||
/// Maximum signed integer value that can be stored in a Json::Value.
|
||||
|
Reference in New Issue
Block a user