Skip to content

Commit 336ef0b

Browse files
authored
Merge pull request #5820 from blowekamp/fix_missing_typename
2 parents 3c4d9f0 + 2ecb0a9 commit 336ef0b

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Modules/Filtering/ImageFeature/include/itkMaskFeaturePointSelectionFilter.hxx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,8 @@ MaskFeaturePointSelectionFilter<TImage, TMask, TFeatures>::PrintSelf(std::ostrea
5050

5151
os << indent << "NonConnectivity: " << m_NonConnectivity << std::endl;
5252
os << indent << "NonConnectivityOffsets: " << m_NonConnectivityOffsets << std::endl;
53-
os << indent << "BlockRadius: " << static_cast<NumericTraits<SizeType>::PrintType>(m_BlockRadius) << std::endl;
53+
os << indent << "BlockRadius: " << static_cast<typename NumericTraits<SizeType>::PrintType>(m_BlockRadius)
54+
<< std::endl;
5455
os << indent << "SelectFraction: " << m_SelectFraction << std::endl;
5556
itkPrintSelfBooleanMacro(ComputeStructureTensors);
5657
}

0 commit comments

Comments
 (0)