]> Creatis software - clitk.git/commitdiff
Remove throw to avoid warning with c++11
authortbaudier <thomas.baudier@creatis.insa-lyon.fr>
Fri, 7 Sep 2018 08:44:20 +0000 (10:44 +0200)
committertbaudier <thomas.baudier@creatis.insa-lyon.fr>
Fri, 7 Sep 2018 08:44:20 +0000 (10:44 +0200)
itk/clitkBackProjectImageFilter.h
itk/clitkBackProjectImageFilter.txx

index 8ff8def40ec2cbf344ee7d4bd643d20d4f680623..cb68779deaa22d68786fdadb0e6391d35e40ba96 100644 (file)
@@ -210,7 +210,7 @@ namespace clitk
     void SetOutputParametersFromImage( const OutputImageConstPointer  image );
 
 
-    void Initialize(void) throw (itk::ExceptionObject);
+    void Initialize(void);
 
   protected:
 
index f98129145b95fcbc31c794f89618881df80f5cf7..e6432266300f4e6f9017f557a94bda5accfd7b70 100644 (file)
@@ -190,7 +190,7 @@ namespace clitk
   template <class InputImageType, class OutputImageType>
   void 
   BackProjectImageFilter<InputImageType, OutputImageType>
-  ::Initialize( void ) throw (itk::ExceptionObject)
+  ::Initialize( void )
   {
     //Change the origin of the 2D input
     typename  InputImageType::ConstPointer inputPtr=this->GetInput();