Remove unsigned short and IdentifierType arguments from aliases of VectorContainer - #6832
Conversation
Removed the unnecessary `IdentifierType` template argument from type aliases of VectorContainer. `IdentifierType` (which is the same as `SizeValueType`) is already the default for this template argument.
Removed the unnecessary `unsigned short` template argument from `itk::VectorContainer` type aliases in `BayesianClassifierInitializationImageFilter::InitializeMembershipFunctions()`. The default (IdentifierType = SizeValueType) is usually preferred, and does not need to be specified, explicitly.
|
Removed the
unsigned shorttemplate argument from type aliases of VectorContainer inBayesianClassifierInitializationImageFilter::InitializeMembershipFunctions(). The default (IdentifierType=SizeValueType) is preferred, and does not need to be specified, explicitly.Removed the
IdentifierTypetemplate argument from other aliases of VectorContainer, as it is already the default, and it does not need to be specified, explicitly.