]> Creatis software - clitk.git/commitdiff
Fix enum define that conflicts with system macro on mac os
authorSimon Rit <simon.rit@creatis.insa-lyon.fr>
Fri, 24 Apr 2015 23:43:37 +0000 (01:43 +0200)
committerSimon Rit <simon.rit@creatis.insa-lyon.fr>
Fri, 24 Apr 2015 23:43:37 +0000 (01:43 +0200)
tools/clitkPadImageGenericFilter.cxx
tools/clitkPadImageGenericFilter.h

index 49d4075997b87e278216d2546a19e2faa393311d..8477a35d8c085574e7829a2b7dd1e2dfc8af2280 100644 (file)
@@ -155,7 +155,7 @@ namespace clitk
     SpacingType spacing = input->GetSpacing(), like_spacing = like_image->GetSpacing(); 
     if (spacing != like_spacing) {
       std::cerr << "Like-image must have same spacing as input: " << spacing << " " << like_spacing << std::endl;
-      return ERR_NOT_SAME_SPACING;
+      return PAD_ERR_NOT_SAME_SPACING;
     }
     
     SizeType size = input->GetLargestPossibleRegion().GetSize(), like_size = like_image->GetLargestPossibleRegion().GetSize();
@@ -175,7 +175,7 @@ namespace clitk
 
       if (auxl < 0 || auxu < 0) {
         std::cerr << "Like-image's bounding box must be larger than input's" << std::endl;
-        return ERR_NOT_LIKE_LARGER;
+        return PAD_ERR_NOT_LIKE_LARGER;
       }
 
       padLower[i] = (PadBoundType)auxl;
@@ -184,7 +184,7 @@ namespace clitk
     
     if (mArgsInfo.verbose_flag)
       std::cout << "PadLike - OUT" << std::endl;
-    return ERR_SUCCESS;
+    return PAD_ERR_SUCCESS;
   }
 } //end clitk
 
index 208b9f960a36425e188aa3edff177a60d8df1470..429d203d6588909abc7130d87ebf4e4b609a1679 100644 (file)
 #include "clitkImageToImageGenericFilter.h"
 #include "clitkPadImage_ggo.h"
 
-#ifdef ERR_SUCCESS
-#  undef ERR_SUCCESS
-#endif
-
 //--------------------------------------------------------------------
 namespace clitk
 {
@@ -38,9 +34,9 @@ namespace clitk
   public:
     enum
     {
-      ERR_SUCCESS = 0,
-      ERR_NOT_SAME_SPACING = -1,
-      ERR_NOT_LIKE_LARGER = -2
+      PAD_ERR_SUCCESS = 0,
+      PAD_ERR_NOT_SAME_SPACING = -1,
+      PAD_ERR_NOT_LIKE_LARGER = -2
     };
 
     //--------------------------------------------------------------------