From cecd5eb66368775099bc316fe35898b71c21036f Mon Sep 17 00:00:00 2001 From: "Hans J. Johnson" Date: Tue, 14 Apr 2026 17:34:58 -0500 Subject: [PATCH] STYLE: Replace 'typedefs' with 'type aliases' in comments The code already uses C++ 'using' declarations. Update the corresponding comments to say 'type aliases' instead of the legacy 'typedefs' terminology. --- include/itkFastBilateralImageFilter.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/itkFastBilateralImageFilter.h b/include/itkFastBilateralImageFilter.h index 08ed21c..b23e898 100644 --- a/include/itkFastBilateralImageFilter.h +++ b/include/itkFastBilateralImageFilter.h @@ -75,7 +75,7 @@ class ITK_EXPORT FastBilateralImageFilter : public ImageToImageFilter; using Pointer = SmartPointer; @@ -91,7 +91,7 @@ class ITK_EXPORT FastBilateralImageFilter : public ImageToImageFilter; - /** Output image typedefs. */ + /** Output image type aliases. */ using OutputImageType = TOutputImage; using OutputImagePointer = typename TOutputImage::Pointer;