-
Notifications
You must be signed in to change notification settings - Fork 755
Open
Labels
odbOpenDBOpenDB
Description
Discussed in #7890
Originally posted by ariasensing July 24, 2025
Hi all,
While wandering around the code I have found this. Isn't it an infinite loop?
File dbUtil.cpp, line 256
dbNet* dbCreateNetUtil::createNetSingleWire(const char* netName,
int x1,
int y1,
int x2,
int y2,
int routingLayer,
dbTechLayerDir dir,
bool skipBterms)
{
if (dir == dbTechLayerDir::NONE) {
return createNetSingleWire(
netName, x1, y1, x2, y2, routingLayer, dir, skipBterms);
}
....