Formatting.

This commit is contained in:
Jeff Young 2020-12-11 12:48:04 +00:00
parent 73b7b104cd
commit d304f12284
1 changed files with 6 additions and 6 deletions

View File

@ -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 );
}