clang format

This commit is contained in:
gabime
2023-09-15 21:10:47 +03:00
parent 1faeb5b6fa
commit 90e92438c8
13 changed files with 39 additions and 51 deletions

View File

@@ -100,7 +100,7 @@ public:
// Pop item from front if not empty.
void pop_front()
{
if(!empty())
if (!empty())
{
head_ = (head_ + 1) % max_items_;
}