mirror of
https://github.com/nlohmann/json.git
synced 2025-07-31 10:24:23 +03:00
🎨 fix inconsistent operator style
This commit is contained in:
@ -1017,7 +1017,7 @@ class basic_json
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
while (!stack.empty())
|
while (not stack.empty())
|
||||||
{
|
{
|
||||||
// move the last item to local variable to be processed
|
// move the last item to local variable to be processed
|
||||||
basic_json current_item(std::move(stack.back()));
|
basic_json current_item(std::move(stack.back()));
|
||||||
|
@ -15560,7 +15560,7 @@ class basic_json
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
while (!stack.empty())
|
while (not stack.empty())
|
||||||
{
|
{
|
||||||
// move the last item to local variable to be processed
|
// move the last item to local variable to be processed
|
||||||
basic_json current_item(std::move(stack.back()));
|
basic_json current_item(std::move(stack.back()));
|
||||||
|
Reference in New Issue
Block a user