pcbnew: Move tracks to std::deque

This commit is contained in:
Seth Hillbrand
2019-06-01 09:53:23 -07:00
parent d1877d7c1b
commit 888c01d11b
45 changed files with 381 additions and 1974 deletions
+1 -1
View File
@@ -831,7 +831,7 @@ void BRDITEMS_PLOTTER::PlotDrillMarks()
if( GetPlotMode() == FILLED )
m_plotter->SetColor( WHITE );
for( TRACK* pts = m_board->m_Track; pts != NULL; pts = pts->Next() )
for( auto pts : m_board->Tracks() )
{
const VIA* via = dyn_cast<const VIA*>( pts );