Clang-Format: set AllowShortLoopsOnASingleLine to false

This commit is contained in:
Benoit Blanchon
2022-12-24 15:47:48 +01:00
parent 396d2a7b3b
commit ac8e5f01db
12 changed files with 29 additions and 14 deletions

View File

@ -25,7 +25,8 @@ TEST_CASE("MemoryPool::size()") {
SECTION("Doesn't grow when memory pool is full") {
const size_t variantCount = sizeof(buffer) / sizeof(VariantSlot);
for (size_t i = 0; i < variantCount; i++) pool.allocVariant();
for (size_t i = 0; i < variantCount; i++)
pool.allocVariant();
size_t size = pool.size();
pool.allocVariant();