Skip to content

Commit

Permalink
default destructor missing
Browse files Browse the repository at this point in the history
  • Loading branch information
SJulianS committed Nov 2, 2023
1 parent 2f49195 commit 8190841
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -436,8 +436,8 @@ namespace hal {
class NetLayoutJunctionHash : public QHash<NetLayoutPoint,NetLayoutJunction*>
{
public:
NetLayoutJunctionHash() {;}
~NetLayoutJunctionHash();
NetLayoutJunctionHash() = default;
~NetLayoutJunctionHash() = default;
void clearAll();
};

Expand Down

0 comments on commit 8190841

Please sign in to comment.