mirror of
https://github.com/nlohmann/json.git
synced 2025-07-12 09:21:42 +03:00
Merge branch 'develop' into feature/iterator_range_parsing
This commit is contained in:
@ -8306,7 +8306,8 @@ class basic_json
|
||||
{
|
||||
case lexer::token_type::begin_object:
|
||||
{
|
||||
if (keep and (not callback or (keep = callback(depth++, parse_event_t::object_start, result))))
|
||||
if (keep and (not callback
|
||||
or ((keep = callback(depth++, parse_event_t::object_start, result)) != 0)))
|
||||
{
|
||||
// explicitly set result to object to cope with {}
|
||||
result.m_type = value_t::object;
|
||||
@ -8384,7 +8385,8 @@ class basic_json
|
||||
|
||||
case lexer::token_type::begin_array:
|
||||
{
|
||||
if (keep and (not callback or (keep = callback(depth++, parse_event_t::array_start, result))))
|
||||
if (keep and (not callback
|
||||
or ((keep = callback(depth++, parse_event_t::array_start, result)) != 0)))
|
||||
{
|
||||
// explicitly set result to object to cope with []
|
||||
result.m_type = value_t::array;
|
||||
|
Reference in New Issue
Block a user