update clang format again

This commit is contained in:
gabime
2023-09-25 16:40:05 +03:00
parent 968048ced6
commit 6dffd7c6e8
101 changed files with 667 additions and 686 deletions

View File

@@ -23,7 +23,7 @@ TEST_CASE("test_rolling", "[circular_q]") {
for (size_t i = 0; i < q_size + 2; i++) {
auto val = i;
q.push_back(std::move(val)); // arg to push_back must be r value
q.push_back(std::move(val)); // arg to push_back must be r value
}
REQUIRE(q.size() == q_size);
@@ -49,7 +49,7 @@ TEST_CASE("test_rolling", "[circular_q]") {
TEST_CASE("test_empty", "[circular_q]") {
q_type q1(0);
REQUIRE(q1.empty());
REQUIRE(q1.full()); // q with capacity 0 is considered full
REQUIRE(q1.full()); // q with capacity 0 is considered full
q1.push_back(1);
REQUIRE(q1.empty());