Skip to content

Commit 9d615f4

Browse files
committed
Minor changes
Signed-off-by: Jaehyun Kim <[email protected]>
1 parent f574c95 commit 9d615f4

File tree

3 files changed

+2
-5
lines changed

3 files changed

+2
-5
lines changed

src/dbSta/src/dbNetwork.cc

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff 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

src/odb/include/odb/db.h

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff 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

src/odb/src/db/dbInst.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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);

0 commit comments

Comments
 (0)