]> Creatis software - cpPlugins.git/blobdiff - plugins/ITKSeparableFilters/SmoothingRecursiveGaussianImageFilter.cxx
...
[cpPlugins.git] / plugins / ITKSeparableFilters / SmoothingRecursiveGaussianImageFilter.cxx
index 9cf2381d59c82fdc5be9540fb8fffd583e0082ce..44a072c6d8a08035ed0594a86a688b1ecf9c88ea 100644 (file)
@@ -36,12 +36,8 @@ _GD0( _TImage* image )
 {
   std::string out_res =
     this->m_Parameters.GetSelectedChoice( "OutputResolution" );
-#ifdef cpPlugins_CONFIG_REAL_TYPES_float
   if( out_res == "float" ) this->_GD1< _TImage, float >( image );
-#endif // cpPlugins_CONFIG_REAL_TYPES_float
-#ifdef cpPlugins_CONFIG_REAL_TYPES_double
   if( out_res == "double" ) this->_GD1< _TImage, double >( image );
-#endif // cpPlugins_CONFIG_REAL_TYPES_double
 }
 
 // -------------------------------------------------------------------------