Skip to content

Commit

Permalink
COMP: Remove spare closing bracket
Browse files Browse the repository at this point in the history
Remove spare closing bracket.

Left behind inadvertently in commit 2bd9f0a.

Fixes:
```
T:\Dashboard\ITK\Modules\Filtering\GPUAnisotropicSmoothing\include\itkGPUAnisotropicDiffusionImageFilter.hxx(66,76):
 error C2187: syntax error: ')' was unexpected here
 [T:\Dashboard\ITK-build\Modules\Filtering\GPUAnisotropicSmoothing\ITKGPUAnisotropicSmoothingHeaderTest1.vcxproj]
```

raised for example in:
https://open.cdash.org/viewBuildError.php?buildid=10232159
  • Loading branch information
jhlegarreta authored and N-Dekker committed Feb 27, 2025
1 parent e29e5cc commit 32a2a6d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ GPUAnisotropicDiffusionImageFilter<TInputImage, TOutputImage, TParentImageFilter
itkWarningMacro("Anisotropic diffusion unstable time step: "
<< this->GetTimeStep() << std::endl
<< "Stable time step for this image must be smaller than "
<< minSpacing / double{ 1ULL << (ImageDimension + 1) }));
<< minSpacing / double{ 1ULL << (ImageDimension + 1) });
}

if (this->m_GradientMagnitudeIsFixed == false)
Expand Down

0 comments on commit 32a2a6d

Please sign in to comment.