We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f2b13df commit 593a4a6Copy full SHA for 593a4a6
src/odb/src/db/dbNet.cpp
@@ -2356,11 +2356,14 @@ void dbNet::setJumpers(bool has_jumpers)
2356
2357
void dbNet::checkSanity() const
2358
{
2359
+ // Check net itself
2360
std::vector<std::string> drvr_info_list;
2361
dbUtil::findBTermDrivers(this, drvr_info_list);
2362
dbUtil::findITermDrivers(this, drvr_info_list);
-
2363
dbUtil::checkNetSanity(this, drvr_info_list);
2364
+
2365
+ // Check the consistency with the related dbModNet
2366
+ checkSanityModNetConsistency();
2367
}
2368
2369
dbModInst* dbNet::findMainParentModInst() const
0 commit comments