* ./crlcore:
- Change: In ApParser, do not stop the parser whenever an external component is found on an internal Net. Instead, display a warning, sets the Net external and continue.
This commit is contained in:
parent
822fd9ae23
commit
20687dc00a
|
@ -595,7 +595,11 @@ namespace {
|
|||
_printError ( false, "Segment neither horizontal nor vertical." );
|
||||
}
|
||||
if ( layerInfo->isConnector()) {
|
||||
NetExternalComponents::setExternal(segment);
|
||||
if ( not net->isExternal() ) {
|
||||
_printWarning ( "External component on non-external net %s", getString(net->getName()).c_str() );
|
||||
net->setExternal ( true );
|
||||
}
|
||||
NetExternalComponents::setExternal(segment);
|
||||
}
|
||||
}
|
||||
else
|
||||
|
|
Loading…
Reference in New Issue