From 9b8b17898a58a7c807ef7ffb21ea3b1a6eb36d7c Mon Sep 17 00:00:00 2001 From: "Hans J. Johnson" Date: Mon, 10 Nov 2025 11:01:24 -0600 Subject: [PATCH] build(wrapping): Fix missing wrapped type for itkWasmTransformIO Only templated variants for double and float are available, so alias to the double version of transforms for wrapping. ITK/build-python/Wrapping/castxml_inputs/itkWasmTransformIO.cxx:26:39: error: no type named 'WasmTransformIO' in namespace 'itk' 26 | using itkWasmTransformIO=itk::WasmTransformIO; | ~~~~~^ --- include/itkWasmTransformIO.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/itkWasmTransformIO.h b/include/itkWasmTransformIO.h index 24d7ab176..0bf73221d 100644 --- a/include/itkWasmTransformIO.h +++ b/include/itkWasmTransformIO.h @@ -147,6 +147,7 @@ ITK_GCC_PRAGMA_DIAG(ignored "-Wattributes") extern template class WebAssemblyInterface_EXPORT_EXPLICIT WasmTransformIOTemplate; extern template class WebAssemblyInterface_EXPORT_EXPLICIT WasmTransformIOTemplate; +using WasmTransformIO = WasmTransformIOTemplate; ITK_GCC_PRAGMA_DIAG_POP()