Fix MSVC build error, LSET iterator is incomplete for use with alg::contains

This commit is contained in:
Mark Roszko 2025-07-15 07:41:15 -04:00
parent e04c5783cf
commit 486522e0b4

View File

@ -1134,7 +1134,7 @@ LSEQ PANEL_SETUP_LAYERS::getNonRemovableLayers()
if( IsCopperLayer( layer_id ) ) // Copper layers are not taken into account here
continue;
if( !alg::contains( newLayers, layer_id ) )
if( !newLayers.Contains( layer_id ) )
{
collector.SetLayerId( layer_id );
collector.Collect( m_pcb, GENERAL_COLLECTOR::FootprintItems );