commit | a53283568fd8cbec2cedb7d4aea1b65c2b579ba6 | [log] [tgz] |
---|---|---|
author | Christopher Dunn <cdunn2001@gmail.com> | Sat Feb 21 10:54:38 2015 -0600 |
committer | Christopher Dunn <cdunn2001@gmail.com> | Tue Mar 03 00:14:53 2015 -0600 |
tree | d7280f1c61be8d86be19b026fc563eeec1b34af8 | |
parent | ef21fbc785b98846b17cd0518770e33393309d03 [diff] |
cp duplicateStringValue()
diff --git a/include/json/value.h b/include/json/value.h index 14c4129..229aa9e 100644 --- a/include/json/value.h +++ b/include/json/value.h
@@ -518,7 +518,7 @@ LargestUInt uint_; double real_; bool bool_; - char* string_; + char* string_; // actually ptr to unsigned, followed by str ObjectValues* map_; } value_; ValueType type_ : 8;