From 2a47f47756244e26f6ffe149534bda5acd45403d Mon Sep 17 00:00:00 2001 From: Hans Johnson Date: Sun, 26 Jan 2025 12:57:17 -0600 Subject: [PATCH] STYLE: CoordRepType -> CoordinateType code readability For the sake of code readability, a new 'CoordinateType' alias is added for each nested 'CoordRepType' alias. The old 'CoordRepType' aliases will still be available with ITK 6.0, but it is recommended to use 'CoordinateType' instead. The 'CoordRepType' aliases will be removed when 'ITK_FUTURE_LEGACY_REMOVE' is enabled. Similarly, 'InputCoordinateType', 'OutputCoordinateType', and 'ImagePointCoordinateType' replace 'InputCoordRepType', 'OutputCoordRepType', and 'ImagePointCoordRepType', respectively. --- src/Core/Mesh/TranslateOneMesh/Code.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Core/Mesh/TranslateOneMesh/Code.cxx b/src/Core/Mesh/TranslateOneMesh/Code.cxx index aa17f4c09..16a6a03b0 100644 --- a/src/Core/Mesh/TranslateOneMesh/Code.cxx +++ b/src/Core/Mesh/TranslateOneMesh/Code.cxx @@ -46,7 +46,7 @@ main(int argc, char * argv[]) auto reader = ReaderType::New(); reader->SetFileName(inputFileName); - using TransformType = itk::TranslationTransform; + using TransformType = itk::TranslationTransform; auto translation = TransformType::New(); TransformType::OutputVectorType displacement;