Fix unused var warnings

This commit is contained in:
Marek Roszko 2022-08-26 20:12:00 -04:00
parent a7f978daf6
commit d807ab3089
2 changed files with 2 additions and 2 deletions

View File

@ -422,7 +422,7 @@ bool EXCELLON_IMAGE::TestFileIsExcellon( const wxString& aFullFileName )
foundY = true;
}
}
catch( IO_ERROR& e )
catch( IO_ERROR& )
{
return false;
}

View File

@ -208,7 +208,7 @@ bool GERBER_FILE_IMAGE::TestFileIsRS274( const wxString& aFullFileName )
}
}
}
catch( IO_ERROR& e )
catch( IO_ERROR& )
{
return false;
}