chore: Enable clang-tidy misc checks (#6655)

This commit is contained in:
Alex Kremer
2026-03-31 18:29:45 +01:00
committed by GitHub
parent c3fae847f3
commit 2502befb42
469 changed files with 3915 additions and 3965 deletions

View File

@@ -67,7 +67,7 @@ public:
{
try
{
Source* source(root.find_one(name));
Source const* source(root.find_one(name));
BEAST_EXPECT(source == expected);
}
catch (...)
@@ -82,7 +82,7 @@ public:
{
try
{
Source* source(root.find_path(path));
Source const* source(root.find_path(path));
BEAST_EXPECT(source == expected);
}
catch (...)
@@ -97,7 +97,7 @@ public:
{
try
{
Source* source(root.find_one_deep(name));
Source const* source(root.find_one_deep(name));
BEAST_EXPECT(source == expected);
}
catch (...)