tidy round1

This commit is contained in:
James Cherry
2026-04-13 14:58:16 -07:00
parent 0a8a86d606
commit 63efee64bf
328 changed files with 3030 additions and 3441 deletions

View File

@@ -35,7 +35,7 @@ template <class OBJ>
class Iterator
{
public:
virtual ~Iterator() {}
virtual ~Iterator() = default;
virtual bool hasNext() = 0;
virtual OBJ next() = 0;
};
@@ -116,4 +116,4 @@ protected:
SET_TYPE::const_iterator itr_;
};
} // namespace
} // namespace sta