Skip to content

Commit

Permalink
COMP: Fix compile error on Linux
Browse files Browse the repository at this point in the history
  • Loading branch information
dzenanz committed Jul 12, 2023
1 parent 9375f3b commit 90bb6fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/itkSliceSeriesSpecialCoordinatesImage.h
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,7 @@ class ITK_TEMPLATE_EXPORT SliceSeriesSpecialCoordinatesImage : public SpecialCoo
slicePoint[ii] = nextPoint[ii];
}
ContinuousIndex<TIndexRep, SliceImageType::ImageDimension> sliceIndex =
this->m_SliceImage->TransformPhysicalPointToContinuousIndex<TIndexRep, TCoordRep>(slicePoint);
this->m_SliceImage->template TransformPhysicalPointToContinuousIndex<TIndexRep, TCoordRep>(slicePoint);
for (unsigned int ii = 0; ii < SliceImageType::ImageDimension; ++ii)
{
index[ii] = sliceIndex[ii];
Expand Down

0 comments on commit 90bb6fb

Please sign in to comment.