From 9f54bb8bf25e659caca42fa06897b6917a062cec Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?D=C5=BEenan=20Zuki=C4=87?= Date: Wed, 6 Dec 2023 16:11:40 -0500 Subject: [PATCH] COMP: Add ULL wrapping for ScanlineFilterCommon Trying to address: itkConnectedComponentImageFilter: warning(4): ITK type not wrapped, or currently not known: itk::ScanlineFilterCommon< itk::Image< short, 2 >, itk::Image< unsigned long long, 2 > > Introduced by 89edcf37641f794938ea4f08d4ae24f1f68d685c from PR #4294. --- .../Filtering/ImageLabel/wrapping/itkScanlineFilterCommon.wrap | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Modules/Filtering/ImageLabel/wrapping/itkScanlineFilterCommon.wrap b/Modules/Filtering/ImageLabel/wrapping/itkScanlineFilterCommon.wrap index bbe2157971e..fc19e1ae719 100644 --- a/Modules/Filtering/ImageLabel/wrapping/itkScanlineFilterCommon.wrap +++ b/Modules/Filtering/ImageLabel/wrapping/itkScanlineFilterCommon.wrap @@ -1,6 +1,6 @@ itk_wrap_class("itk::ScanlineFilterCommon" POINTER) itk_wrap_image_filter("${WRAP_ITK_REAL}" 2 2+) -unique(to_types "UL;${WRAP_ITK_INT}") +unique(to_types "UL;${ITKM_IT};${WRAP_ITK_INT}") itk_wrap_image_filter_combinations("${WRAP_ITK_INT}" "${to_types}" 2+) # wrap vector to int combinations because ConnectedComponentImageFilter uses them itk_wrap_image_filter_combinations("${WRAP_ITK_VECTOR}" "${WRAP_ITK_INT}" 2+)