Fix warning in PCBNEW_JOBS_HANDLER.

This commit is contained in:
Alex Shvartzkop 2024-04-20 20:11:14 +03:00
parent 1e1aecfd28
commit 7215613b13
1 changed files with 1 additions and 1 deletions

View File

@ -1247,7 +1247,7 @@ int PCBNEW_JOBS_HANDLER::JobExportDrc( JOB* aJob )
KICAD_NETLIST_READER netlistReader( lineReader, netlist.get() ); KICAD_NETLIST_READER netlistReader( lineReader, netlist.get() );
netlistReader.LoadNetlist(); netlistReader.LoadNetlist();
} }
catch( const IO_ERROR& e ) catch( const IO_ERROR& )
{ {
m_reporter->Report( _( "Failed to fetch schematic netlist for parity tests.\n" ), m_reporter->Report( _( "Failed to fetch schematic netlist for parity tests.\n" ),
RPT_SEVERITY_INFO ); RPT_SEVERITY_INFO );