chore: compatibility with clang-format 20 to 21 (#7499)

This commit is contained in:
Cœur
2025-12-16 06:55:32 +01:00
committed by GitHub
parent fcd1e2ff8a
commit c56723ef1f
7 changed files with 73 additions and 46 deletions

View File

@@ -641,10 +641,10 @@ TEST_F(VariantTest, visitStringExposesStringView)
called = true;
EXPECT_EQ(Text, sv);
},
[](auto&&)
{
FAIL();
} });
// clang-format off: TODO: remove when we bump to clang-format >= 21
[](auto&&) { FAIL(); } }
);
// clang-format on
EXPECT_TRUE(called);
}