mirror of
https://github.com/XRPLF/rippled.git
synced 2026-06-04 01:06:48 +00:00
chore: Enable clang-tidy misc checks (#6655)
This commit is contained in:
@@ -57,7 +57,7 @@ public:
|
||||
|
||||
// only 'a' has out edges
|
||||
BEAST_EXPECT(graph.outVertices().size() == 1);
|
||||
std::vector<char> expected = {'b', 'c'};
|
||||
std::vector<char> const expected = {'b', 'c'};
|
||||
|
||||
BEAST_EXPECT((graph.outVertices('a') == expected));
|
||||
BEAST_EXPECT(graph.outVertices('b').size() == 0);
|
||||
@@ -66,7 +66,7 @@ public:
|
||||
|
||||
std::stringstream ss;
|
||||
graph.saveDot(ss, [](char v) { return v; });
|
||||
std::string expectedDot =
|
||||
std::string const expectedDot =
|
||||
"digraph {\n"
|
||||
"a -> b;\n"
|
||||
"a -> c;\n"
|
||||
|
||||
Reference in New Issue
Block a user