Skip to content
Snippets Groups Projects
Commit cb29a776 authored by Guillaume Pasero's avatar Guillaume Pasero
Browse files

Merge branch 'warning_getjacobian' into 'develop'

Warning on GetJacobian with GitlabCI

See merge request orfeotoolbox/otb!420
parents a10f120f ee9e5a2a
No related branches found
No related tags found
No related merge requests found
......@@ -188,7 +188,11 @@ public:
*
* \f]
* */
#ifdef ITKV3_COMPATIBILITY
const JacobianType & GetJacobian(const InputPointType &) const override
#else
virtual const JacobianType & GetJacobian(const InputPointType &) const
#endif
{
itkExceptionMacro( << "Subclass should override this method (GetJacobian)" );
// Next line is needed to avoid errors due to:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment