Skip to content
Snippets Groups Projects
Commit 362dd2cb authored by Thomas Feuvrier's avatar Thomas Feuvrier
Browse files

COMP: Suppress warning on Visual: exception var err not used

parent 1530195a
Branches
Tags
No related merge requests found
......@@ -266,7 +266,7 @@ GenericRSTransform<TScalarType, NInputDimensions, NOutputDimensions>
otbMsgDevMacro(<< "Input projection set to sensor model.");
}
}
catch(itk::ExceptionObject &err)
catch(itk::ExceptionObject &)
{
otbMsgDevMacro(<<" Input keyword list does not describe a sensor model.");
}
......@@ -310,7 +310,7 @@ GenericRSTransform<TScalarType, NInputDimensions, NOutputDimensions>
otbMsgDevMacro(<< "Output projection set to sensor model");
}
}
catch(itk::ExceptionObject &err)
catch(itk::ExceptionObject &)
{
otbMsgDevMacro(<<" Output keyword list does not describe a sensor model.");
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment