mirror of
https://gitlab.com/kicad/code/kicad.git
synced 2025-09-14 02:03:12 +02:00
Fix MSVC build error, LSET iterator is incomplete for use with alg::contains
This commit is contained in:
parent
e04c5783cf
commit
486522e0b4
@ -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 );
|
||||
|
Loading…
x
Reference in New Issue
Block a user