style: clang-tidy auto fixes (#2420)

This commit is contained in:
github-actions[bot]
2025-08-11 19:59:47 +01:00
committed by GitHub
parent 9420c506ca
commit 333b73e882
4 changed files with 4 additions and 7 deletions

View File

@@ -27,6 +27,6 @@ TEST(ScopeGuardTest, IsCalled)
testing::StrictMock<testing::MockFunction<void()>> mockFunction;
EXPECT_CALL(mockFunction, Call());
{
util::ScopeGuard guard([&mockFunction] { mockFunction.Call(); });
util::ScopeGuard const guard([&mockFunction] { mockFunction.Call(); });
}
}