Clean up warnings from exception handlers
The exception objects caught are either not referenced at all, or only in debug builds. This avoids the warnings for the unused variables.
This commit is contained in:
committed by
Wayne Stambaugh
parent
6d27087053
commit
b0f9864bc4
@@ -140,7 +140,7 @@ bool LIB_ALIAS::SaveDoc( OUTPUTFORMATTER& aFormatter )
|
||||
|
||||
aFormatter.Print( 0, "$ENDCMP\n" );
|
||||
}
|
||||
catch( const IO_ERROR& ioe )
|
||||
catch( const IO_ERROR& )
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user