Skip to content

Commit 7698b3c

Browse files
author
Steve Hanson
committed
code and tests
1 parent dad85ca commit 7698b3c

File tree

3 files changed

+981
-97
lines changed

3 files changed

+981
-97
lines changed

include/rapidjson/document.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1967,7 +1967,7 @@ class GenericValue {
19671967
case kArrayType:
19681968
if (RAPIDJSON_UNLIKELY(!handler.StartArray()))
19691969
return false;
1970-
for (const GenericValue* v = Begin(); v != End(); ++v)
1970+
for (ConstValueIterator v = Begin(); v != End(); ++v)
19711971
if (RAPIDJSON_UNLIKELY(!v->Accept(handler)))
19721972
return false;
19731973
return handler.EndArray(data_.a.size);

0 commit comments

Comments
 (0)