🎨 fix inconsistent operator style

parent 411158d8
...@@ -1017,7 +1017,7 @@ class basic_json ...@@ -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 ...@@ -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()));
......
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