mirror of
https://github.com/XRPLF/rippled.git
synced 2026-07-27 17:10:46 +00:00
chore: Enable clang-tidy misc checks (#6655)
This commit is contained in:
@@ -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 (...)
|
||||
|
||||
Reference in New Issue
Block a user