Skip to content
Permalink
Browse files
COMP: Unused variable warning
Modules/Core/Transform/test/itkComposeScaleSkewVersor3DTransformTest.cxx:560:37: warning: unused variable 'pntT' [-Wunused-variable]
      TransformType::InputPointType pntT = idT->TransformPoint(pnt);
                                    ^
  • Loading branch information
hjmjohnson committed Apr 10, 2020
1 parent 4c80b5c commit c40a494c7923f7a357519770b44d90354d5fa512
Showing 1 changed file with 1 addition and 2 deletions.
@@ -557,8 +557,7 @@ itkComposeScaleSkewVersor3DTransformTest(int, char *[])
ParametersType params = idT->GetParameters();
params[mc] = 0.1;
idT->SetParameters(params);
TransformType::InputPointType pntT = idT->TransformPoint(pnt);
TransformType::JacobianType jacob;
TransformType::JacobianType jacob;
idT->ComputeJacobianWithRespectToParameters(pnt, jacob);
for (unsigned int i = 0; i < np; ++i)
{

0 comments on commit c40a494

Please sign in to comment.