Formatting.
This commit is contained in:
parent
73b7b104cd
commit
d304f12284
|
@ -331,7 +331,7 @@ void ROUTER::updateView( NODE* aNode, ITEM_SET& aCurrent, bool aDragging )
|
|||
|
||||
aNode->GetUpdatedItems( removed, added );
|
||||
|
||||
for( auto item : added )
|
||||
for( ITEM* item : added )
|
||||
{
|
||||
int clearance = GetRuleResolver()->Clearance( item, nullptr );
|
||||
m_iface->DisplayItem( item, -1, clearance, aDragging );
|
||||
|
@ -452,7 +452,7 @@ void ROUTER::StopRouting()
|
|||
m_placer->GetModifiedNets( nets );
|
||||
|
||||
// Update the ratsnest with new changes
|
||||
for ( auto n : nets )
|
||||
for( int n : nets )
|
||||
m_iface->UpdateNet( n );
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue