🎨 fix inconsistent operator style

This commit is contained in:
Niels Lohmann 2019-11-11 21:37:32 +01:00
parent 411158d896
commit be61ad1470
No known key found for this signature in database
GPG key ID: 7F3CEA63AE251B69
2 changed files with 2 additions and 2 deletions

View file

@ -1017,7 +1017,7 @@ class basic_json
}
}
while (!stack.empty())
while (not stack.empty())
{
// move the last item to local variable to be processed
basic_json current_item(std::move(stack.back()));

View file

@ -15560,7 +15560,7 @@ class basic_json
}
}
while (!stack.empty())
while (not stack.empty())
{
// move the last item to local variable to be processed
basic_json current_item(std::move(stack.back()));