Browse Source

Fix unused var warnings

7.0
Marek Roszko 3 years ago
parent
commit
d807ab3089
  1. 2
      gerbview/excellon_read_drill_file.cpp
  2. 2
      gerbview/readgerb.cpp

2
gerbview/excellon_read_drill_file.cpp

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

2
gerbview/readgerb.cpp

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

Loading…
Cancel
Save