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

@@ -10,7 +10,7 @@ class STArray final : public STBase, public CountedObject<STArray>
private:
using list_type = std::vector<STObject>;
list_type v_{};
list_type v_;
public:
using value_type = STObject;
@@ -74,7 +74,7 @@ public:
pushBack(object);
}
static void
void
// NOLINTNEXTLINE(readability-identifier-naming)
push_back(STObject&& object)
{