🚨 fixed another linter warning

parent ad01736d
......@@ -820,7 +820,7 @@ class binary_reader
*/
bool get_cbor_object(const std::size_t len)
{
if (not JSON_UNLIKELY(sax->start_object(len)))
if (JSON_UNLIKELY(not sax->start_object(len)))
{
return false;
}
......
......@@ -7273,7 +7273,7 @@ class binary_reader
*/
bool get_cbor_object(const std::size_t len)
{
if (not JSON_UNLIKELY(sax->start_object(len)))
if (JSON_UNLIKELY(not sax->start_object(len)))
{
return false;
}
......
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