Skip to content

Commit

Permalink
COMP: add missing trailing semicolon after itkExceptionMacro
Browse files Browse the repository at this point in the history
Compilation errors (introduced by #3387) are only triggered with
ITK_FUTURE_LEGACY_REMOVE which does not seem to be set in any ITK CI.
  • Loading branch information
Simon Rit authored and hjmjohnson committed May 4, 2022
1 parent 29a49b5 commit 01fa5a5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ FFTConvolutionImageFilter<TInputImage, TKernelImage, TOutputImage, TInternalPrec
bool wasPartiallyInside = inputRegion.Crop(inputPtr->GetLargestPossibleRegion());
if (!wasPartiallyInside)
{
itkExceptionMacro("Requested region is outside the largest possible region.")
itkExceptionMacro("Requested region is outside the largest possible region.");
}

// Input is an image, cast away the constness so we can set
Expand Down

0 comments on commit 01fa5a5

Please sign in to comment.