roll back unrelated clang-tidy changes

This commit is contained in:
Mayukha Vadari
2026-06-10 22:52:20 -04:00
parent 7098e49dbb
commit 052bb02c07
100 changed files with 373 additions and 336 deletions

View File

@@ -118,7 +118,7 @@ private:
class STPath final : public CountedObject<STPath>
{
std::vector<STPathElement> path_{};
std::vector<STPathElement> path_;
public:
STPath() = default;
@@ -173,7 +173,7 @@ public:
// A set of zero or more payment paths
class STPathSet final : public STBase, public CountedObject<STPathSet>
{
std::vector<STPath> value_{};
std::vector<STPath> value_;
public:
STPathSet() = default;