Skip to content

Commit

Permalink
Merge pull request #5130 from seanm/gpu-build-error
Browse files Browse the repository at this point in the history
COMP: fixed compiler error
  • Loading branch information
thewtex authored Jan 13, 2025
2 parents df23c1f + a305ff2 commit 4cb9bb6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ GPUDiscreteGaussianImageFilter<TInputImage, TOutputImage>::GPUGenerateData()
// Middle filters convolves from real to real
if (filterDimensionality > 2)
{
for (i = 1; i < filterDimensionality - 1; ++i)
for (unsigned int i = 1; i < filterDimensionality - 1; ++i)
{
typename IntermediateFilterType::Pointer f = m_IntermediateFilters[i - 1];
f->SetOperator(oper[i]);
Expand Down

0 comments on commit 4cb9bb6

Please sign in to comment.