Open rmisev opened 7 years ago
Adds parse_array_stop(size_t) override, which returns true, to the root_context class in the streaming.cc example.
parse_array_stop(size_t)
true
root_context
streaming.cc
If not overriden, picojson::deny_parse_context::parse_array_stop(size_t) returns false what causes syntax error.
picojson::deny_parse_context::parse_array_stop(size_t)
false
Related issue: #82
It would be great to pull at least commit f5fdb1f It took me some time to fix the same problem.
Thank you.
Adds
parse_array_stop(size_t)
override, which returnstrue
, to theroot_context
class in thestreaming.cc
example.If not overriden,
picojson::deny_parse_context::parse_array_stop(size_t)
returnsfalse
what causes syntax error.Related issue: #82