Commit 2a2ed799 authored by Mike Bogdanov's avatar Mike Bogdanov

pvs_studio fix. misprinted condition

parent 8d104e6f
......@@ -5179,7 +5179,7 @@ class basic_json
// passed iterators must belong to objects
if (JSON_UNLIKELY(not first.m_object->is_object()
or not first.m_object->is_object()))
or not last.m_object->is_object()))
{
JSON_THROW(invalid_iterator::create(202, "iterators first and last must point to objects"));
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment