]> SALOME platform Git repositories - tools/medcoupling.git/commitdiff
Salome HOME
staffan :
authorvbd <vbd>
Fri, 14 Sep 2007 12:43:16 +0000 (12:43 +0000)
committervbd <vbd>
Fri, 14 Sep 2007 12:43:16 +0000 (12:43 +0000)
* turned on all warnings
* fixed some things that caused warnings

src/INTERP_KERNEL/Makefile.in
src/INTERP_KERNEL/TransformedTriangle.cxx
src/INTERP_KERNEL/TransformedTriangle_math.cxx

index 3c98159a621218a35e125b436a5ccad6f32a03c1..d9aef8f48970c5ddb37f063219a94afdf2293fe0 100644 (file)
@@ -95,8 +95,8 @@ CPPFLAGS+=$(BOOST_CPPFLAGS)
 
 # optimization
 
-CXXFLAGS+=  -O2 -DOPTIMIZE
-CPPFLAGS+=  -O2 -DOPTIMIZE
+CXXFLAGS+=  -O2 -DOPTIMIZE -Wall
+CPPFLAGS+=  -O2 -DOPTIMIZE -Wall
 
 # for log
 CXXFLAGS+= -DLOG_LEVEL=0 
index 6180698f29b986f23f8ffbd5ab3c8e46f0dc6243..70fae60e22e995aeef7f4bd146d67f542d78dbe3 100644 (file)
@@ -607,7 +607,7 @@ namespace INTERP_UTILS
        sort((polygon.begin()), polygon.end(), order);
     
        LOG(3,"Sorted polygon is ");
-       for(int i = 0 ; i < polygon.size() ; ++i)
+       for(size_t i = 0 ; i < polygon.size() ; ++i)
          {
            LOG(3,vToStr(polygon[i]));
          }
index 7abb59412b207c158f64ccdbf217091b9f7c14ca..ebbf768f39e970d45c78e7ab1f65309eb644ec14 100644 (file)
@@ -206,7 +206,7 @@ namespace INTERP_UTILS
       _doubleProducts[8*seg + dp] = 0.0;
     };
   }
-#endif OPTIMIZE
+#endif //OPTIMIZE
 
   /**
    * Calculate the shortest distance between a tetrahedron corner and a triangle segment.