Skip to content

Commit 9a2379f

Browse files
jhlegarretahjmjohnson
authored andcommitted
BUG: Add semicolon after ITK_EXERCISE_BASIC_OBJECT_METHODS call
Add missing semicolon after `ITK_EXERCISE_BASIC_OBJECT_METHODS` macro call in test. Fixes: ``` itkAutoScaledGradientDescentRegistrationOnVectorTest.cxx:130:116: error: expected ';' after 'static_assert' shiftScalesEstimator, RegistrationParameterScalesFromPhysicalShift, RegistrationParameterScalesFromShiftBase) ^ ; ``` Reported in: https://open.cdash.org/viewBuildError.php?buildid=8785957 Oversight introduced in commit 165fb5b.
1 parent 6a5060b commit 9a2379f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Modules/Numerics/Optimizersv4/test/itkAutoScaledGradientDescentRegistrationOnVectorTest.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ itkAutoScaledGradientDescentRegistrationOnVectorTestTemplated(int number
127127
auto shiftScalesEstimator = ShiftScalesEstimatorType::New();
128128

129129
ITK_EXERCISE_BASIC_OBJECT_METHODS(
130-
shiftScalesEstimator, RegistrationParameterScalesFromPhysicalShift, RegistrationParameterScalesFromShiftBase)
130+
shiftScalesEstimator, RegistrationParameterScalesFromPhysicalShift, RegistrationParameterScalesFromShiftBase);
131131

132132

133133
shiftScalesEstimator->SetMetric(metric);

0 commit comments

Comments
 (0)