Skip to content
Commits on Source (3)
......@@ -22,8 +22,7 @@ Build-Depends: debhelper (>= 9),
libminc-dev,
libnifti-dev,
libhdf5-dev,
dh_python,
python-all-dev
python-dev
# libvtk6-dev -- only needed if we enable one of the following modules:
# VtkGlue, LevelSetsv4Visualization
Standards-Version: 4.1.3
......
Author: Gert Wollny <gewo@debian.org>
Description: Fix an (old) upstream error for a type cast
--- a/Modules/Registration/PDEDeformable/include/itkMultiResolutionPDEDeformableRegistration.h
+++ b/Modules/Registration/PDEDeformable/include/itkMultiResolutionPDEDeformableRegistration.h
@@ -185,7 +185,7 @@
/** Get output deformation field. */
const DeformationFieldType * GetDeformationField(void)
{
- return itkDynamicCastInDebugMode<DeformationFieldType *> (this->GetDisplacementField());
+ return itkDynamicCastInDebugMode<const DeformationFieldType *> (this->GetDisplacementField());
}
#endif
......@@ -8,5 +8,6 @@ itk4.12.0-resource_cprobe.patch
disable-doxygen.patch
simplify-system-gtest.patch
fix-minc-includes.patch
remove_gcc_version_test.patch
#remove_gcc_version_test.patch
#fix_python_tests.diff
fix_dynamic_cast.patch