]> SALOME platform Git repositories - modules/geom.git/commitdiff
Salome HOME
Remove compilation warnings
authorvsr <vsr@opencascade.com>
Thu, 8 Nov 2012 06:46:31 +0000 (06:46 +0000)
committervsr <vsr@opencascade.com>
Thu, 8 Nov 2012 06:46:31 +0000 (06:46 +0000)
src/GEOMAlgo/GEOMAlgo_FinderShapeOnQuad.cxx
src/GEOMAlgo/GEOMAlgo_GetInPlace_3.cxx
src/GEOMAlgo/GEOMAlgo_GlueDetector.cxx
src/GEOMAlgo/GEOMAlgo_Gluer2_1.cxx

index 2c4d0afeacf19c4eecd7355eb17044a79ff6e5b4..c8b331334b718b3f1554ba7c7e1016f269c7f5c6 100644 (file)
@@ -110,7 +110,7 @@ TopAbs_State GEOMAlgo_FinderShapeOnQuad::GetPointState(const gp_Pnt& aP)
   // In the case of concave quadrangle, return IN if
   // aP is OUT of only one concave side
   double nbIn = 0.;
-  for ( int i = 0; i < myPlanes.size(); ++i )
+  for ( size_t i = 0; i < myPlanes.size(); ++i )
   {
     TopAbs_State aSt;
     GEOMAlgo_SurfaceTools::GetState(aP, myPlanes[i], myTolerance, aSt);
index 3cc870da44ac14b144a326e40e7e51a26fa201d2..f409c17fc7a7cfb61c2be59f5063a7f33eb793fa 100644 (file)
@@ -125,7 +125,7 @@ const NMTTools_CoupleOfShape& GEOMAlgo_GetInPlaceIterator::Value()const
 Standard_Integer TypeToInteger(const TopAbs_ShapeEnum aType1,
                               const TopAbs_ShapeEnum aType2)
 {
-  Standard_Integer iRet, iT1, iT2, iX;
+  Standard_Integer iRet;
   //
   iRet=-1;
   //
index fb8d5dfdcb91bf504428b7cc88fc5f142131c77d..14a7ed5d594351ff65eaf893f43635eb3ccf8896 100644 (file)
@@ -511,8 +511,7 @@ void GEOMAlgo_GlueDetector::CheckDetected
    const TopTools_IndexedDataMapOfShapeListOfShape& aMVE,
    const TopTools_IndexedDataMapOfShapeListOfShape& aMEV)
 {
-  Standard_Integer i, aNbVSD, aNbA, iRet;
-  TopAbs_ShapeEnum aTypeS, aTypeA[2];
+  Standard_Integer aNbVSD, iRet;
   TopExp_Explorer aExp, aExpA;
   TopTools_MapOfShape aMFence, aMVSD;
   TopTools_ListOfShape aLV;
index 400613da76298888a0f8f26a8994d06db7c3d69d..bcc94c5fd7aac7ad0e64dd2e94fb9bbd88a9cf55 100644 (file)
@@ -100,7 +100,6 @@ void GEOMAlgo_Gluer2::MakeFace(const TopoDS_Face& theF,
   Standard_Boolean bIsToReverse, bIsUPeriodic;
   Standard_Integer iRet;
   Standard_Real aTol, aUMin, aUMax, aVMin, aVMax;
-  TopAbs_Orientation aOrE;
   Handle(Geom_Surface) aS;
   TopLoc_Location aLoc;
   TopoDS_Shape aW, aWr;