Skip to content

Commit

Permalink
Ctidy clean ups. Signed-off-by:Andy Fox [email protected]
Browse files Browse the repository at this point in the history
Signed-off-by: andyfox-rushc <[email protected]>
  • Loading branch information
andyfox-rushc committed Jul 22, 2024
1 parent 918b5a3 commit 5fba3b6
Showing 1 changed file with 3 additions and 7 deletions.
10 changes: 3 additions & 7 deletions src/dbSta/src/dbNetwork.cc
Original file line number Diff line number Diff line change
Expand Up @@ -704,8 +704,8 @@ class dbModulePortIterator : public CellPortIterator
public:
explicit dbModulePortIterator(const dbModule* cell);
~dbModulePortIterator() override;
virtual bool hasNext();
virtual Port* next();
virtual bool hasNext() override;
virtual Port* next() override;

private:
const dbModBTerm* iter_;
Expand Down Expand Up @@ -2462,7 +2462,7 @@ class DbNetworkPortMemberIterator : public PortMemberIterator
{
public:
explicit DbNetworkPortMemberIterator(const Port* port, const dbNetwork* nwk);
~DbNetworkPortMemberIterator();
~DbNetworkPortMemberIterator() = default;
virtual bool hasNext();
virtual Port* next();

Expand Down Expand Up @@ -2497,10 +2497,6 @@ DbNetworkPortMemberIterator::DbNetworkPortMemberIterator(const Port* port,
}
}

DbNetworkPortMemberIterator::~DbNetworkPortMemberIterator()
{
}

bool DbNetworkPortMemberIterator::hasNext()
{
ix_++;
Expand Down

0 comments on commit 5fba3b6

Please sign in to comment.