File tree Expand file tree Collapse file tree 3 files changed +2
-5
lines changed
Expand file tree Collapse file tree 3 files changed +2
-5
lines changed Original file line number Diff line number Diff line change @@ -4551,8 +4551,6 @@ void dbNetwork::checkSanityNetConnectivity(odb::dbObject* obj) const
45514551 // Check for incomplete flat net connections
45524552 for (odb::dbNet* net_db : block ()->getNets ()) {
45534553 net_db->checkSanity ();
4554- std::set<dbModNet*> modnet_set;
4555- net_db->findRelatedModNets (modnet_set);
45564554 }
45574555}
45584556
Original file line number Diff line number Diff line change @@ -1756,8 +1756,7 @@ class dbNet : public dbObject
17561756{
17571757 public:
17581758 // /
1759- // / Get the net name.
1760- // / - It is a hierarchical net name.
1759+ // / Get the hierarchical net name.
17611760 // /
17621761 std::string getName () const ;
17631762
Original file line number Diff line number Diff line change @@ -1337,7 +1337,7 @@ dbInst* dbInst::create(dbBlock* block_,
13371337 inst->getId (),
13381338 static_cast <void *>(inst),
13391339 inst->getName (),
1340- inst-> getMaster () ->getName ());
1340+ master_ ->getName ());
13411341 dbLib* lib = master_->getLib ();
13421342 block->_journal ->beginAction (dbJournal::CREATE_OBJECT);
13431343 block->_journal ->pushParam (dbInstObj);
You can’t perform that action at this time.
0 commit comments