commit | a1d6c9e66af3b05a530fb91c5072bc576c74df2d | [log] [tgz] |
---|---|---|
author | Baptiste Lepilleur <baptiste.lepilleur@gmail.com> | Mon Nov 23 22:33:30 2009 +0000 |
committer | Baptiste Lepilleur <baptiste.lepilleur@gmail.com> | Mon Nov 23 22:33:30 2009 +0000 |
tree | 15a68a6e213f2057ff18c50474c7673aa926955b | |
parent | 2814f6e95b32aab57a4e11efe63846e2aa0b0270 [diff] |
Fixed iteration bug over null values.
diff --git a/include/json/value.h b/include/json/value.h index 3884b08..72fcabd 100644 --- a/include/json/value.h +++ b/include/json/value.h
@@ -917,6 +917,8 @@ private: #ifndef JSON_VALUE_USE_INTERNAL_MAP Value::ObjectValues::iterator current_; + // Indicates that iterator is for a null value. + bool isNull_; #else union {