Skip to content
Snippets Groups Projects
Commit a5ff6175 authored by Mickael Savinaud's avatar Mickael Savinaud
Browse files

WRG remove warning about non referenced variable in catch

parent 4fde9bff
Branches
Tags
No related merge requests found
......@@ -163,7 +163,7 @@ namespace otb
{ \
command; \
} \
catch (const std::exception& stde) { \
catch (const std::exception&) { \
throw; } \
catch (...) \
{ \
......
......@@ -273,7 +273,7 @@ OGRLayerStreamStitchingFilter<TInputImage>
}
catch(itk::ExceptionObject& err)
{
otbDebugMacro(<<"An exception was caught during fusion: "<<err);
otbWarningMacro(<<"An exception was caught during fusion: "<<err);
}
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment