From bcf50875e368e3287e7fafb2f49d777c7b455d08 Mon Sep 17 00:00:00 2001 From: ski Date: Thu, 5 Feb 2015 14:23:17 +0300 Subject: [PATCH] 0025734: GCC warnings in Android build Warnings were fixed. Fixed wrong re-initialization. --- src/AIS/AIS_LocalContext_1.cxx | 20 +------ .../AppParCurves_ResolConstraint.gxx | 60 +++++++++---------- src/BOPAlgo/BOPAlgo_BuilderSolid.cxx | 11 ++-- src/BOPAlgo/BOPAlgo_PaveFiller_6.cxx | 10 ---- src/BRepFeat/BRepFeat_Form.cxx | 25 +------- src/BRepFeat/BRepFeat_MakeLinearForm.cxx | 2 +- src/BRepMesh/BRepMesh_FastDiscret.hxx | 3 +- src/BRepOffset/BRepOffset_MakeOffset.cxx | 2 +- src/BRepOffset/BRepOffset_Offset.cxx | 5 +- src/BSplCLib/BSplCLib.cxx | 22 ++++--- src/Bnd/Bnd_BoundSortBox.cxx | 3 +- src/BndLib/BndLib_Add2dCurve.cxx | 3 +- src/ChFi3d/ChFi3d_Builder_C2.cxx | 7 --- src/GeomFill/GeomFill_BSplineCurves.cxx | 4 +- src/GeomFill/GeomFill_BezierCurves.cxx | 6 +- .../IntPatch_ImpImpIntersection_0.gxx | 2 +- src/IntTools/IntTools_FaceFace.cxx | 3 +- src/IntWalk/IntWalk_PWalking.cxx | 4 +- src/LocOpe/LocOpe_SplitShape.cxx | 16 +---- src/MeshVS/MeshVS_MeshPrsBuilder.cxx | 4 -- ...RWStepAP214_RWAppliedDocumentReference.cxx | 3 +- ...tepAP214_RWAutoDesignDocumentReference.cxx | 3 +- src/Resource/Resource_Manager.cxx | 8 ++- src/ShapeProcess/ShapeProcess_Context.cxx | 2 +- src/TopOpeBRep/TopOpeBRep_FacesFiller_1.cxx | 36 +++++++---- src/TopOpeBRep/TopOpeBRep_vprdeg.cxx | 5 +- src/Units/Units_Lexicon.cxx | 2 +- src/Units/Units_UnitsDictionary.cxx | 2 +- src/Units/Units_UnitsLexicon.cxx | 2 +- 29 files changed, 103 insertions(+), 172 deletions(-) diff --git a/src/AIS/AIS_LocalContext_1.cxx b/src/AIS/AIS_LocalContext_1.cxx index 9e1e6722e7..546aff59e1 100644 --- a/src/AIS/AIS_LocalContext_1.cxx +++ b/src/AIS/AIS_LocalContext_1.cxx @@ -567,8 +567,6 @@ void AIS_LocalContext::Unhilight (const Handle(SelectMgr_EntityOwner)& theOwner, //======================================================================= void AIS_LocalContext::HilightPicked(const Standard_Boolean updateviewer) { - Standard_Boolean updMain(Standard_False); - Handle(AIS_Selection) Sel = AIS_Selection::Selection(mySelName.ToCString()); #ifdef BUC60765 if( Sel.IsNull() ) return; @@ -601,13 +599,8 @@ void AIS_LocalContext::HilightPicked(const Standard_Boolean updateviewer) if(BROwnr.IsNull() || !BROwnr->ComesFromDecomposition()){ Handle(SelectMgr_SelectableObject) SO = Ownr->Selectable(); IO = *((Handle(AIS_InteractiveObject)*)&SO); - updMain = Standard_True; } - else - updMain = Standard_True; } - else - updMain = Standard_True; Handle(SelectMgr_SelectableObject) SO = Ownr->Selectable(); Standard_Integer HM = GetHiMod(*((Handle(AIS_InteractiveObject)*)&SO)); if ( Ownr->IsAutoHilight() ) @@ -642,8 +635,6 @@ void AIS_LocalContext::UnhilightPicked (const Standard_Boolean updateviewer) { myMainPM->ClearImmediateDraw(); - Standard_Boolean updMain(Standard_False); - Handle(AIS_Selection) Sel = AIS_Selection::Selection(mySelName.ToCString()); #ifdef BUC60765 if( Sel.IsNull() ) return; @@ -680,10 +671,7 @@ void AIS_LocalContext::UnhilightPicked (const Standard_Boolean updateviewer) Handle(AIS_InteractiveObject) IO = *((Handle(AIS_InteractiveObject)*)&SO); HM = GetHiMod(IO); #endif - updMain = Standard_True; } - else - updMain = Standard_True; } Ownr->Unhilight(PM,HM); } @@ -696,14 +684,8 @@ void AIS_LocalContext::UnhilightPicked (const Standard_Boolean updateviewer) anIter1.Key()->ClearSelected(); } - if(updateviewer){ -#ifdef BUC60774 + if(updateviewer) myCTX->CurrentViewer()->Update(); -#else - if(updMain) myCTX->CurrentViewer()->Update(); -#endif - } - } //======================================================================= diff --git a/src/AppParCurves/AppParCurves_ResolConstraint.gxx b/src/AppParCurves/AppParCurves_ResolConstraint.gxx index bb97424de8..ec123cb62d 100644 --- a/src/AppParCurves/AppParCurves_ResolConstraint.gxx +++ b/src/AppParCurves/AppParCurves_ResolConstraint.gxx @@ -75,7 +75,6 @@ AppParCurves_ResolConstraint:: Standard_Integer myindex, Def = SCurv.NbPoles()-1; Standard_Integer nb3d, nb2d, Npol= Def+1, Npol2 = 2*Npol; Standard_Real T1 = 0., T2 = 0., T3, Tmax, Daij; - Standard_Boolean Ok; gp_Vec V; gp_Vec2d V2d; gp_Pnt Poi; @@ -281,13 +280,13 @@ AppParCurves_ResolConstraint:: case 1: //T1 ~ T1x { if (k <= nb3d) { - Ok = ToolLine::Tangency(SSP, Npt, tabV); + ToolLine::Tangency(SSP, Npt, tabV); V = tabV(k); T1 = V.X(); IP = 3 * Npol; } else { - Ok = ToolLine::Tangency(SSP, Npt, tabV2d); + ToolLine::Tangency(SSP, Npt, tabV2d); V2d = tabV2d(k-nb3d); T1 = V2d.X(); IP = 2 * Npol; @@ -298,12 +297,12 @@ AppParCurves_ResolConstraint:: case 2: //T1 ~ T1y { if (k <= nb3d) { - Ok = ToolLine::Tangency(SSP, Npt, tabV); + ToolLine::Tangency(SSP, Npt, tabV); V = tabV(k); IP = 3 * Npol; } else { - Ok = ToolLine::Tangency(SSP, Npt, tabV2d); + ToolLine::Tangency(SSP, Npt, tabV2d); V2d = tabV2d(k-nb3d); T1 = V2d.Y(); IP = 2 * Npol; @@ -313,7 +312,7 @@ AppParCurves_ResolConstraint:: } case 3: //T1 ~ T1z { - Ok = ToolLine::Tangency(SSP, Npt, tabV); + ToolLine::Tangency(SSP, Npt, tabV); V = tabV(k); T1 = V.Z(); IP = 3 * Npol; @@ -328,12 +327,12 @@ AppParCurves_ResolConstraint:: case 1: //T2 ~ T2x { if ((k+1) <= nb3d) { - Ok = ToolLine::Tangency(SSP, Npt, tabV); + ToolLine::Tangency(SSP, Npt, tabV); V = tabV(k+1); T2 = V.X(); } else { - Ok = ToolLine::Tangency(SSP, Npt, tabV2d); + ToolLine::Tangency(SSP, Npt, tabV2d); V2d = tabV2d(k+1-nb3d); T2 = V2d.X(); } @@ -343,12 +342,12 @@ AppParCurves_ResolConstraint:: case 2: //T2 ~ T2y { if ((k+1) <= nb3d) { - Ok = ToolLine::Tangency(SSP, Npt, tabV); + ToolLine::Tangency(SSP, Npt, tabV); V = tabV(k+1); T2 = V.Y(); } else { - Ok = ToolLine::Tangency(SSP, Npt, tabV2d); + ToolLine::Tangency(SSP, Npt, tabV2d); V2d = tabV2d(k+1-nb3d); T2 = V2d.Y(); } @@ -357,7 +356,7 @@ AppParCurves_ResolConstraint:: } case 3: //T2 ~ T2z { - Ok = ToolLine::Tangency(SSP, Npt, tabV); + ToolLine::Tangency(SSP, Npt, tabV); V = tabV(k+1); T2 = V.Z(); addIndex_2 = 2 * Npol; @@ -554,7 +553,6 @@ const math_Matrix& AppParCurves_ResolConstraint:: Standard_Integer IP; Standard_Real Daij; Npol = Deg+1; Npol2 = 2*Npol; - Standard_Boolean Ok; TColStd_Array2OfInteger Ibont(1, NbCu, 1, IncTan); math_Matrix DeCInit(1, IncPass, 1, Npol); math_Vector DDA(1, Npol); @@ -601,7 +599,7 @@ const math_Matrix& AppParCurves_ResolConstraint:: Npt = ITan(i); // MultiPoint MPoint = ToolLine::Value(SSP, Npt); // choix du maximum de tangence pour exprimer la colinearite: - Ok = ToolLine::Tangency(SSP, Npt, tabV); + ToolLine::Tangency(SSP, Npt, tabV); V = tabV(k); V.Coord(T1, T2, T3); Tmax = Abs(T1); @@ -650,7 +648,7 @@ const math_Matrix& AppParCurves_ResolConstraint:: for (i = 1; i <= IncTan; i++) { Npt = ITan(i); AppParCurves::SecondDerivativeBernstein(Parameters(Npt), DDA); - Ok = ToolLine::Tangency(SSP, Npt, tabV2d); + ToolLine::Tangency(SSP, Npt, tabV2d); V2d = tabV2d(k); V2d.Coord(T1, T2); Tmax = Abs(T1); @@ -682,25 +680,25 @@ const math_Matrix& AppParCurves_ResolConstraint:: Inc3 = Inc3 + 1; if (Ibont(k, i) == 1) { if (k <= nb3d) { - Ok = ToolLine::Tangency(SSP, Npt, tabV); + ToolLine::Tangency(SSP, Npt, tabV); V = tabV(k); T1 = V.X(); IP = 3*Npol; } else { - Ok = ToolLine::Tangency(SSP, Npt, tabV2d); + ToolLine::Tangency(SSP, Npt, tabV2d); V2d = tabV2d(k); T1 = V2d.X(); IP = 2*Npol; } if (Ibont(k+1, i) == 1) { // Relations entre T1x et T2x: if ((k+1) <= nb3d) { - Ok = ToolLine::Tangency(SSP, Npt, tabV); + ToolLine::Tangency(SSP, Npt, tabV); V = tabV(k+1); T2 = V.X(); } else { - Ok = ToolLine::Tangency(SSP, Npt, tabV2d); + ToolLine::Tangency(SSP, Npt, tabV2d); V2d = tabV2d(k+1); T2 = V2d.X(); } @@ -713,12 +711,12 @@ const math_Matrix& AppParCurves_ResolConstraint:: } else if (Ibont(k+1, i) == 2) { // Relations entre T1x et T2y: if ((k+1) <= nb3d) { - Ok = ToolLine::Tangency(SSP, Npt, tabV); + ToolLine::Tangency(SSP, Npt, tabV); V = tabV(k+1); T2 = V.Y(); } else { - Ok = ToolLine::Tangency(SSP, Npt, tabV2d); + ToolLine::Tangency(SSP, Npt, tabV2d); V2d = tabV2d(k+1); T2 = V2d.Y(); } @@ -743,25 +741,25 @@ const math_Matrix& AppParCurves_ResolConstraint:: } else if (Ibont(k,i) == 2) { if (k <= nb3d) { - Ok = ToolLine::Tangency(SSP, Npt, tabV); + ToolLine::Tangency(SSP, Npt, tabV); V = tabV(k); T1 = V.Y(); IP = 3*Npol; } else { - Ok = ToolLine::Tangency(SSP, Npt, tabV2d); + ToolLine::Tangency(SSP, Npt, tabV2d); V2d = tabV2d(k); T1 = V2d.Y(); IP = 2*Npol; } if (Ibont(k+1, i) == 1) { // Relations entre T1y et T2x: if ((k+1) <= nb3d) { - Ok = ToolLine::Tangency(SSP, Npt, tabV); + ToolLine::Tangency(SSP, Npt, tabV); V = tabV(k+1); T2 = V.X(); } else { - Ok = ToolLine::Tangency(SSP, Npt, tabV2d); + ToolLine::Tangency(SSP, Npt, tabV2d); V2d = tabV2d(k+1); T2 = V2d.X(); } @@ -775,12 +773,12 @@ const math_Matrix& AppParCurves_ResolConstraint:: } else if (Ibont(k+1, i) == 2) { // Relations entre T1y et T2y: if ((k+1) <= nb3d) { - Ok = ToolLine::Tangency(SSP, Npt, tabV); + ToolLine::Tangency(SSP, Npt, tabV); V = tabV(k+1); T2 = V.Y(); } else { - Ok = ToolLine::Tangency(SSP, Npt, tabV2d); + ToolLine::Tangency(SSP, Npt, tabV2d); V2d = tabV2d(k+1); T2 = V2d.Y(); } @@ -806,18 +804,18 @@ const math_Matrix& AppParCurves_ResolConstraint:: } else { - Ok = ToolLine::Tangency(SSP, Npt, tabV); + ToolLine::Tangency(SSP, Npt, tabV); V = tabV(k); T1 = V.Z(); IP = 3*Npol; if (Ibont(k+1, i) == 1) { // Relations entre T1z et T2x: if ((k+1) <= nb3d) { - Ok = ToolLine::Tangency(SSP, Npt, tabV); + ToolLine::Tangency(SSP, Npt, tabV); V = tabV(k+1); T2 = V.X(); } else { - Ok = ToolLine::Tangency(SSP, Npt, tabV2d); + ToolLine::Tangency(SSP, Npt, tabV2d); V2d = tabV2d(k+1); T2 = V2d.X(); } @@ -831,12 +829,12 @@ const math_Matrix& AppParCurves_ResolConstraint:: else if (Ibont(k+1, i) == 2) { // Relations entre T1z et T2y: if ((k+1) <= nb3d) { - Ok = ToolLine::Tangency(SSP, Npt, tabV); + ToolLine::Tangency(SSP, Npt, tabV); V = tabV(k+1); T2 = V.Y(); } else { - Ok = ToolLine::Tangency(SSP, Npt, tabV2d); + ToolLine::Tangency(SSP, Npt, tabV2d); V2d = tabV2d(k+1); T2 = V2d.Y(); } diff --git a/src/BOPAlgo/BOPAlgo_BuilderSolid.cxx b/src/BOPAlgo/BOPAlgo_BuilderSolid.cxx index 9d5167d7d2..8986652964 100644 --- a/src/BOPAlgo/BOPAlgo_BuilderSolid.cxx +++ b/src/BOPAlgo/BOPAlgo_BuilderSolid.cxx @@ -480,7 +480,6 @@ void BOPAlgo_BuilderSolid::PerformLoops() //================================================= // // 2. Post Treatment - Standard_Integer aNbFA; BRep_Builder aBB; BOPCol_MapOfOrientedShape AddedFacesMap; BOPCol_IndexedDataMapOfShapeListOfShape aEFMap; @@ -520,8 +519,6 @@ void BOPAlgo_BuilderSolid::PerformLoops() aEFMap.Clear(); AddedFacesMap.Clear(); // - aNbFA=myShapesToAvoid.Extent(); - // aItM.Initialize(myShapesToAvoid); for (; aItM.More(); aItM.Next()) { const TopoDS_Shape& aFF=aItM.Key(); @@ -570,7 +567,7 @@ void BOPAlgo_BuilderSolid::PerformLoops() void BOPAlgo_BuilderSolid::PerformAreas() { Standard_Boolean bIsGrowth, bIsHole; - Standard_Integer k,aNbHoles; + Standard_Integer k; BRep_Builder aBB; BOPCol_ListIteratorOfListOfShape aItLS; BOPCol_ListOfShape aNewSolids, aHoleShells; @@ -669,7 +666,7 @@ void BOPAlgo_BuilderSolid::PerformAreas() aSelector.Clear(); aSelector.SetBox(aBoxSolid); // - aNbHoles=aBBTree.Select(aSelector); + aBBTree.Select(aSelector); // const BOPCol_ListOfInteger& aLI=aSelector.Indices(); // @@ -767,7 +764,7 @@ void BOPAlgo_BuilderSolid::PerformInternalShapes() } // Standard_Boolean bIsInternalFace; - Standard_Integer k, aNbVFS, aNbSLF, aNbVFP, aNbF, aNbA; + Standard_Integer k, aNbVFS, aNbSLF, aNbVFP, aNbA; BRep_Builder aBB; TopoDS_Iterator aIt; TopExp_Explorer aExp; @@ -856,7 +853,7 @@ void BOPAlgo_BuilderSolid::PerformInternalShapes() aSelector.Clear(); aSelector.SetBox(aBox); // - aNbF=aBBTree.Select(aSelector); + aBBTree.Select(aSelector); // const BOPCol_ListOfInteger& aLI=aSelector.Indices(); aItLI.Initialize(aLI); diff --git a/src/BOPAlgo/BOPAlgo_PaveFiller_6.cxx b/src/BOPAlgo/BOPAlgo_PaveFiller_6.cxx index 2edebeb5eb..90f4aa3941 100644 --- a/src/BOPAlgo/BOPAlgo_PaveFiller_6.cxx +++ b/src/BOPAlgo/BOPAlgo_PaveFiller_6.cxx @@ -1555,20 +1555,10 @@ Standard_Boolean BOPAlgo_PaveFiller::ExtendedTolerance return; } // - GeomAbs_SurfaceType aType1, aType2; Handle(Geom_Surface) aS1=BRep_Tool::Surface(aF1); Handle(Geom_Surface) aS2=BRep_Tool::Surface(aF2); - GeomAdaptor_Surface aGAS1(aS1); - GeomAdaptor_Surface aGAS2(aS2); - // - aType1=aGAS1.GetType(); - aType2=aGAS2.GetType(); - // - //if (aType1==GeomAbs_Torus || aType2==GeomAbs_Torus) { - GeomAbs_CurveType aTypeC; // const IntTools_Curve& aIC=aNC.Curve(); - aTypeC=aIC.Type(); //if (aTypeC==GeomAbs_BezierCurve || aTypeC==GeomAbs_BSplineCurve) { Handle(Geom2d_Curve) aC2D[2]; // diff --git a/src/BRepFeat/BRepFeat_Form.cxx b/src/BRepFeat/BRepFeat_Form.cxx index 534e377dbb..da27cd8c75 100644 --- a/src/BRepFeat/BRepFeat_Form.cxx +++ b/src/BRepFeat/BRepFeat_Form.cxx @@ -164,8 +164,6 @@ static void Descendants(const TopoDS_Shape&, TColGeom_SequenceOfCurve scur; Curves(scur); - Standard_Real locmin; - Standard_Real locmax; Standard_Real mf, Mf, mu, Mu; TopAbs_Orientation Orifuntil = TopAbs_INTERNAL; @@ -193,9 +191,7 @@ static void Descendants(const TopoDS_Shape&, } { -// Find sens, locmin, locmax, FFrom, FUntil - locmin = RealFirst(); - locmax = RealLast(); +// Find sens, FFrom, FUntil for (Standard_Integer jj=1; jj<=scur.Length(); jj++) { if (ASI1.IsDone() && ASI2.IsDone()) { if (ASI1.NbPoints(jj) <= 0) { @@ -208,19 +204,12 @@ static void Descendants(const TopoDS_Shape&, } mu = ASI2.Point(jj,1).Parameter(); Mu = ASI2.Point(jj,ASI2.NbPoints(jj)).Parameter(); - if (scur(jj)->IsPeriodic()) { - Standard_Real period = scur(jj)->Period(); - locmin = mf; - locmax = ElCLib::InPeriod(Mu,locmin,locmin+period); - } - else { + if (!scur(jj)->IsPeriodic()) { Standard_Integer ku, kf; if (! (mu > Mf || mf > Mu)) { //overlapping intervals sens = 1; kf = 1; ku = ASI2.NbPoints(jj); - locmin = mf; - locmax = Max(Mf, Mu); } else if (mu > Mf) { if (sens == -1) { @@ -231,8 +220,6 @@ static void Descendants(const TopoDS_Shape&, sens = 1; kf = 1; ku = ASI2.NbPoints(jj); - locmin = mf; - locmax = Mu; } else { if (sens == 1) { @@ -243,8 +230,6 @@ static void Descendants(const TopoDS_Shape&, sens = -1; kf = ASI1.NbPoints(jj); ku = 1; - locmin = mu; - locmax = Mf; } if (Oriffrom == TopAbs_INTERNAL) { TopAbs_Orientation Oript = ASI1.Point(jj,kf).Orientation(); @@ -287,13 +272,9 @@ static void Descendants(const TopoDS_Shape&, Standard_Integer ku; if (sens == -1) { ku = 1; - locmax = -ASI2.Point(jj,ku).Parameter(); - locmin = 0.; } else { ku = ASI2.NbPoints(jj); - locmin = 0; - locmax = ASI2.Point(jj,ku).Parameter(); } if (Orifuntil == TopAbs_INTERNAL && sens != 0) { TopAbs_Orientation Oript = ASI2.Point(jj,ku).Orientation(); @@ -307,8 +288,6 @@ static void Descendants(const TopoDS_Shape&, } } else { - locmin = 0.; - locmax = RealLast(); sens = 1; break; } diff --git a/src/BRepFeat/BRepFeat_MakeLinearForm.cxx b/src/BRepFeat/BRepFeat_MakeLinearForm.cxx index 56e6ac88d2..fa3f48065a 100644 --- a/src/BRepFeat/BRepFeat_MakeLinearForm.cxx +++ b/src/BRepFeat/BRepFeat_MakeLinearForm.cxx @@ -315,7 +315,7 @@ void BRepFeat_MakeLinearForm::Init(const TopoDS_Shape& Sbase, #ifdef OCCT_DEBUG if (trc) cout << " Sliding" << endl; #endif - Standard_Boolean Sliding = Standard_False; + Sliding = Standard_False; Handle(Geom_Surface) s = BRep_Tool::Surface(FirstFace); if (s->DynamicType() == STANDARD_TYPE(Geom_RectangularTrimmedSurface)) { diff --git a/src/BRepMesh/BRepMesh_FastDiscret.hxx b/src/BRepMesh/BRepMesh_FastDiscret.hxx index c515032aa0..a515b69909 100644 --- a/src/BRepMesh/BRepMesh_FastDiscret.hxx +++ b/src/BRepMesh/BRepMesh_FastDiscret.hxx @@ -192,7 +192,8 @@ private: mySameVertex(theSameVertex) { } - + virtual ~TopoDSVExplorer() { + } const TopoDS_Vertex& Vertex() const { return myVertex; diff --git a/src/BRepOffset/BRepOffset_MakeOffset.cxx b/src/BRepOffset/BRepOffset_MakeOffset.cxx index 269b9c900c..d2ff2f66e7 100644 --- a/src/BRepOffset/BRepOffset_MakeOffset.cxx +++ b/src/BRepOffset/BRepOffset_MakeOffset.cxx @@ -884,7 +884,7 @@ static void TrimEdge (TopoDS_Edge& NE, Standard_Real aSameParTol = Precision::Confusion(); TopoDS_Vertex V1,V2; - Standard_Real U; + Standard_Real U = 0.; Standard_Real UMin = Precision::Infinite(); Standard_Real UMax = -UMin; diff --git a/src/BRepOffset/BRepOffset_Offset.cxx b/src/BRepOffset/BRepOffset_Offset.cxx index 7e734e0555..f93e72658e 100644 --- a/src/BRepOffset/BRepOffset_Offset.cxx +++ b/src/BRepOffset/BRepOffset_Offset.cxx @@ -525,7 +525,6 @@ void BRepOffset_Offset::Init(const TopoDS_Face& Face, Standard_Boolean VminDegen = Standard_False; Standard_Boolean VmaxDegen = Standard_False; Standard_Boolean UisoDegen = Standard_False; - Standard_Boolean VisoDegen = Standard_False; gp_Pnt MinApex, MaxApex; Standard_Boolean HasSingularity = Standard_False; Standard_Real uf1, uf2, vf1, vf2, fpar, lpar; @@ -552,9 +551,7 @@ void BRepOffset_Offset::Init(const TopoDS_Face& Face, gp_Pnt2d lp2d = aCurve->Value(lpar); if (Abs(fp2d.X() - lp2d.X()) <= Precision::PConfusion()) UisoDegen = Standard_True; - else - VisoDegen = Standard_True; - + if (DegEdges.Length() == 2) { if (UisoDegen) diff --git a/src/BSplCLib/BSplCLib.cxx b/src/BSplCLib/BSplCLib.cxx index 77decf1daa..54cfce7f2f 100644 --- a/src/BSplCLib/BSplCLib.cxx +++ b/src/BSplCLib/BSplCLib.cxx @@ -3020,14 +3020,16 @@ void BSplCLib::Interpolate(const Standard_Integer Degree, InterpolationMatrix, UpperBandWidth, LowerBandWidth) ; - Standard_OutOfRange_Raise_if (ErrorCode != 0, "BSplCLib::Interpolate") ; + if(ErrorCode) + Standard_OutOfRange::Raise("BSplCLib::Interpolate"); ErrorCode = BSplCLib::FactorBandedMatrix(InterpolationMatrix, UpperBandWidth, LowerBandWidth, InversionProblem) ; - Standard_OutOfRange_Raise_if (ErrorCode != 0, "BSplCLib::Interpolate") ; + if(ErrorCode) + Standard_OutOfRange::Raise("BSplCLib::Interpolate"); ErrorCode = BSplCLib::SolveBandedSystem(InterpolationMatrix, @@ -3035,9 +3037,9 @@ void BSplCLib::Interpolate(const Standard_Integer Degree, LowerBandWidth, ArrayDimension, Poles) ; - - Standard_OutOfRange_Raise_if (ErrorCode != 0,"BSplCLib::Interpolate") ; -} + if(ErrorCode) + Standard_OutOfRange::Raise("BSplCLib::Interpolate"); +} //======================================================================= //function : Interpolate @@ -3067,14 +3069,16 @@ void BSplCLib::Interpolate(const Standard_Integer Degree, InterpolationMatrix, UpperBandWidth, LowerBandWidth) ; - Standard_OutOfRange_Raise_if (ErrorCode != 0, "BSplCLib::Interpolate") ; + if(ErrorCode) + Standard_OutOfRange::Raise("BSplCLib::Interpolate"); ErrorCode = BSplCLib::FactorBandedMatrix(InterpolationMatrix, UpperBandWidth, LowerBandWidth, InversionProblem) ; - Standard_OutOfRange_Raise_if (ErrorCode != 0, "BSplCLib::Interpolate") ; + if(ErrorCode) + Standard_OutOfRange::Raise("BSplCLib::Interpolate"); ErrorCode = BSplCLib::SolveBandedSystem(InterpolationMatrix, @@ -3084,8 +3088,8 @@ void BSplCLib::Interpolate(const Standard_Integer Degree, ArrayDimension, Poles, Weights) ; - - Standard_OutOfRange_Raise_if (ErrorCode != 0,"BSplCLib::Interpolate") ; + if(ErrorCode) + Standard_OutOfRange::Raise("BSplCLib::Interpolate"); } //======================================================================= diff --git a/src/Bnd/Bnd_BoundSortBox.cxx b/src/Bnd/Bnd_BoundSortBox.cxx index 9957b1cb03..899ad26504 100644 --- a/src/Bnd/Bnd_BoundSortBox.cxx +++ b/src/Bnd/Bnd_BoundSortBox.cxx @@ -649,11 +649,10 @@ const TColStd_ListOfInteger& Bnd_BoundSortBox::Compare (const Bnd_Box& theBox) //-- Rejection with the table of bits Standard_Boolean touch = Standard_True; touch = Standard_False; - Standard_Real _Xmin,_Ymin,_Zmin,_Xmax,_Ymax,_Zmax; + Standard_Real _Xmax,_Ymax,_Zmax; BSB_T3Bits* Map = (BSB_T3Bits *)TabBits; Standard_Real xmin, ymin, zmin, xmax, ymax, zmax; _Xmax=Map->Xmax; _Ymax=Map->Ymax; _Zmax=Map->Zmax; - _Xmin=Map->Xmin; _Ymin=Map->Ymin; _Zmin=Map->Zmin; theBox.Get(xmin, ymin, zmin, xmax, ymax, zmax); Standard_Integer i0,i1,j0,j1,k0,k1; if(xmin>Xmin) i0=(Standard_Integer )((xmin-Xmin)*deltaX)-1; else i0=1; diff --git a/src/BndLib/BndLib_Add2dCurve.cxx b/src/BndLib/BndLib_Add2dCurve.cxx index 9fdc06495a..105265a4b0 100644 --- a/src/BndLib/BndLib_Add2dCurve.cxx +++ b/src/BndLib/BndLib_Add2dCurve.cxx @@ -530,14 +530,13 @@ Standard_Boolean BndLib_Box2dCurve::IsTypeBase void BndLib_Box2dCurve::PerformLineConic() { Standard_Integer i, iInf[2]; - Standard_Real aTb[2], aTinf; + Standard_Real aTb[2]; gp_Pnt2d aP2D; // myErrorStatus=0; // Bnd_Box2d& aBox2D=myBox; // - aTinf=Precision::Infinite(); iInf[0]=0; iInf[1]=0; aTb[0]=myT1; diff --git a/src/ChFi3d/ChFi3d_Builder_C2.cxx b/src/ChFi3d/ChFi3d_Builder_C2.cxx index 6d51ab2e2b..9025eb6f07 100644 --- a/src/ChFi3d/ChFi3d_Builder_C2.cxx +++ b/src/ChFi3d/ChFi3d_Builder_C2.cxx @@ -173,15 +173,8 @@ Standard_Integer ChFi3d_Builder::PerformTwoCornerbyInter(const Standard_Integer // Otherwise the opposite face // and the eventual intersection of 2 pcurves on this face are found. - ChFiDS_State Stat1,Stat2; Standard_Boolean isfirst1 = (Sens1 == 1); Standard_Boolean isfirst2 = (Sens2 == 1); - Stat1 = Corner1->Spine()->Status(isfirst1); - Stat2 = Corner2->Spine()->Status(isfirst2); -/*#ifdef OCCT_DEBUG - Standard_Boolean evolcoin = ((Stat1 == ChFiDS_OnSame && Stat2 == ChFiDS_OnDiff) || - (Stat2 == ChFiDS_OnSame && Stat1 == ChFiDS_OnDiff)); -#endif*/ Standard_Boolean OkinterCC,Okvisavis,SameSide; Standard_Integer IFaCo1,IFaCo2; Standard_Real UIntPC1,UIntPC2; diff --git a/src/GeomFill/GeomFill_BSplineCurves.cxx b/src/GeomFill/GeomFill_BSplineCurves.cxx index 2048178723..13a71afb59 100644 --- a/src/GeomFill/GeomFill_BSplineCurves.cxx +++ b/src/GeomFill/GeomFill_BSplineCurves.cxx @@ -538,8 +538,8 @@ void GeomFill_BSplineCurves::Init IsOK = Standard_True; } - Standard_ConstructionError_Raise_if - (!IsOK, " GeomFill_BSplineCurves: Courbes non jointives"); + if(!IsOK) + Standard_OutOfRange::Raise("GeomFill_BSplineCurves: Courbes non jointives"); Standard_Integer NbUPoles = CC1->NbPoles(); Standard_Integer NbVPoles = CC2->NbPoles(); diff --git a/src/GeomFill/GeomFill_BezierCurves.cxx b/src/GeomFill/GeomFill_BezierCurves.cxx index fbabf167ed..e232c0807e 100644 --- a/src/GeomFill/GeomFill_BezierCurves.cxx +++ b/src/GeomFill/GeomFill_BezierCurves.cxx @@ -438,9 +438,9 @@ void GeomFill_BezierCurves::Init(const Handle(Geom_BezierCurve)& C1, CC2->Reverse(); IsOK = Standard_True; } - - Standard_ConstructionError_Raise_if - (!IsOK, " GeomFill_BezierCurves: Courbes non jointives"); + + if(!IsOK) + Standard_OutOfRange::Raise("GeomFill_BezierCurves: Courbes non jointives"); CC1->Poles(P1); CC2->Poles(P2); diff --git a/src/IntPatch/IntPatch_ImpImpIntersection_0.gxx b/src/IntPatch/IntPatch_ImpImpIntersection_0.gxx index ddd7227a49..6e296d82af 100644 --- a/src/IntPatch/IntPatch_ImpImpIntersection_0.gxx +++ b/src/IntPatch/IntPatch_ImpImpIntersection_0.gxx @@ -372,7 +372,7 @@ void PutPointsOnLine(const Handle(Adaptor3d_HSurface)& S1, // Standard_Integer i,k; Standard_Integer linenumber; - Standard_Real paraint,currentparameter,tolerance; + Standard_Real paraint = 0.,currentparameter,tolerance; Standard_Real U1,V1,U2,V2; Standard_Boolean goon; diff --git a/src/IntTools/IntTools_FaceFace.cxx b/src/IntTools/IntTools_FaceFace.cxx index 0bcbc42bee..d8b2eab11d 100644 --- a/src/IntTools/IntTools_FaceFace.cxx +++ b/src/IntTools/IntTools_FaceFace.cxx @@ -822,11 +822,10 @@ static Standard_Boolean isTreatAnalityc(const TopoDS_Face& theF1, Standard_Real IntTools_FaceFace::ComputeTolerance() { Standard_Integer i, j, aNbLin; - Standard_Real aFirst, aLast, aD, aDMax, aT, aDelta; + Standard_Real aFirst, aLast, aD, aDMax, aT; Handle(Geom_Surface) aS1, aS2; // aDMax = 0; - aDelta = Precision::PConfusion(); aNbLin = mySeqOfCurve.Length(); // aS1 = myHS1->ChangeSurface().Surface(); diff --git a/src/IntWalk/IntWalk_PWalking.cxx b/src/IntWalk/IntWalk_PWalking.cxx index ffdcc00fe8..208179835e 100644 --- a/src/IntWalk/IntWalk_PWalking.cxx +++ b/src/IntWalk/IntWalk_PWalking.cxx @@ -593,7 +593,6 @@ void IntWalk_PWalking::Perform(const TColStd_Array1OfReal& ParDep, //xf Standard_Integer NbPasOKConseq=0; - Standard_Real pasMaxSV[4], aTmp; TColStd_Array1OfReal Param(1,4); IntImp_ConstIsoparametric ChoixIso; //xt @@ -644,14 +643,13 @@ void IntWalk_PWalking::Perform(const TColStd_Array1OfReal& ParDep, // for (Standard_Integer i=1; i<=4; ++i) { - aTmp=ParDep(i); Param(i)=ParDep(i); } //-- reproduce steps uv connected to surfaces Caro1 and Caro2 //-- pasuv[] and pasSav[] are modified during the marching for(Standard_Integer i = 0; i < 4; ++i) { - pasMaxSV[i] = pasSav[i] = pasuv[i] = pasInit[i]; + pasSav[i] = pasuv[i] = pasInit[i]; } //-- calculate the first solution point diff --git a/src/LocOpe/LocOpe_SplitShape.cxx b/src/LocOpe/LocOpe_SplitShape.cxx index 721792410a..984def24b3 100644 --- a/src/LocOpe/LocOpe_SplitShape.cxx +++ b/src/LocOpe/LocOpe_SplitShape.cxx @@ -958,26 +958,12 @@ void LocOpe_SplitShape::AddOpenWire(const TopoDS_Wire& W, // modifs JAG 97.05.28 - TopAbs_Orientation orfila=TopAbs_FORWARD; - - for (exp.Init(FaceRef.Oriented(TopAbs_FORWARD),TopAbs_WIRE); - exp.More(); exp.Next()) { - const TopoDS_Wire& wir = TopoDS::Wire(exp.Current()); - if (wir.IsSame(wfirst)) { - orfila = exp.Current().Orientation(); - break; - } - } - - //newW1.Oriented(orfila); - //newW2.Oriented(orfila); - B.Add(newF1,newW1); //BRepTools::Write(newF1, "k:/queries/WrongBOP/NewF1.brep"); B.Add(newF2,newW2); //BRepTools::Write(newF2, "k:/queries/WrongBOP/NewF2.brep"); - for (exp.ReInit(); exp.More(); exp.Next()) { + for (exp.Init(FaceRef.Oriented(TopAbs_FORWARD),TopAbs_WIRE); exp.More(); exp.Next()) { const TopoDS_Wire& wir = TopoDS::Wire(exp.Current()); if (!wir.IsSame(wfirst)) { if (IsInside(newF1, wir)) { diff --git a/src/MeshVS/MeshVS_MeshPrsBuilder.cxx b/src/MeshVS/MeshVS_MeshPrsBuilder.cxx index a3edb3b570..2553dddfbd 100644 --- a/src/MeshVS/MeshVS_MeshPrsBuilder.cxx +++ b/src/MeshVS/MeshVS_MeshPrsBuilder.cxx @@ -326,10 +326,6 @@ void MeshVS_MeshPrsBuilder::BuildElements( const Handle(Prs3d_Presentation)& Prs aEdgeSegments = new Graphic3d_ArrayOfSegments (aNbEdgePrimitives * 2); } - Standard_Integer howMany = 1; - if ( IsOverlapControl ) - howMany = 2; - TColStd_PackedMapOfInteger aCustomElements; Quantity_Color anOldEdgeColor; diff --git a/src/RWStepAP214/RWStepAP214_RWAppliedDocumentReference.cxx b/src/RWStepAP214/RWStepAP214_RWAppliedDocumentReference.cxx index adca08846b..06c5852868 100644 --- a/src/RWStepAP214/RWStepAP214_RWAppliedDocumentReference.cxx +++ b/src/RWStepAP214/RWStepAP214_RWAppliedDocumentReference.cxx @@ -40,8 +40,7 @@ void RWStepAP214_RWAppliedDocumentReference::ReadStep // --- inherited field : source --- Handle(TCollection_HAsciiString) asource; - Standard_Boolean stat2; - stat2 = data->ReadString (num,2,"source",ach,asource); + data->ReadString (num,2,"source",ach,asource); // --- own field : items --- diff --git a/src/RWStepAP214/RWStepAP214_RWAutoDesignDocumentReference.cxx b/src/RWStepAP214/RWStepAP214_RWAutoDesignDocumentReference.cxx index 0352e56f2b..b17c5e3558 100644 --- a/src/RWStepAP214/RWStepAP214_RWAutoDesignDocumentReference.cxx +++ b/src/RWStepAP214/RWStepAP214_RWAutoDesignDocumentReference.cxx @@ -40,8 +40,7 @@ void RWStepAP214_RWAutoDesignDocumentReference::ReadStep // --- inherited field : source --- Handle(TCollection_HAsciiString) asource; - Standard_Boolean stat2; - stat2 = data->ReadString (num,2,"source",ach,asource); + data->ReadString (num,2,"source",ach,asource); // --- own field : items --- diff --git a/src/Resource/Resource_Manager.cxx b/src/Resource/Resource_Manager.cxx index 47989602e2..8a98296172 100644 --- a/src/Resource/Resource_Manager.cxx +++ b/src/Resource/Resource_Manager.cxx @@ -198,9 +198,11 @@ static Standard_Integer WhatKindOfLine(OSD_File& aFile, } if (Pos == Line.Length()) aToken2.Clear(); - else - aToken2 = Line.SubString(Pos,Line.Length()-1); - + else { + Line.Remove(1,Pos-1); + Line.Remove(Line.Length()); + aToken2 = Line; + } if (Debug) cout << "'\t Value = '" << aToken2 << "'" << endl << flush; return RESOURCE; diff --git a/src/ShapeProcess/ShapeProcess_Context.cxx b/src/ShapeProcess/ShapeProcess_Context.cxx index e9a67cd06d..4dd1a18471 100644 --- a/src/ShapeProcess/ShapeProcess_Context.cxx +++ b/src/ShapeProcess/ShapeProcess_Context.cxx @@ -77,7 +77,7 @@ Handle(Resource_Manager) ShapeProcess_Context::LoadResourceManager (const Standa if ( ! sRC.IsNull() && ! name.IsEqual ( file ) ) sRC.Nullify(); if ( ! sRC.IsNull() ) { struct stat buf; - if ( ! stat ( file, &buf ) && buf.st_mtime != mtime ) { + if ( ! stat ( file, &buf ) && (Standard_Time)buf.st_mtime != mtime ) { sRC.Nullify(); mtime = buf.st_mtime; } diff --git a/src/TopOpeBRep/TopOpeBRep_FacesFiller_1.cxx b/src/TopOpeBRep/TopOpeBRep_FacesFiller_1.cxx index 5e68aacd51..a61cd6a8f6 100644 --- a/src/TopOpeBRep/TopOpeBRep_FacesFiller_1.cxx +++ b/src/TopOpeBRep/TopOpeBRep_FacesFiller_1.cxx @@ -762,16 +762,31 @@ void TopOpeBRep_FacesFiller::ProcessRLine() TopoDS_Face OOFace = (*this).Face(OOShapeIndex); Standard_Integer iOOFace = myDS->Shape(OOFace); - TopoDS_Edge edge,OOedge; Standard_Integer SIedgeIndex,OOedgeIndex; - Standard_Real paredge,OOparedge; + TopoDS_Edge edge,OOedge; Standard_Integer OOedgeIndex; +#ifdef OCCT_DEBUG + Standard_Integer SIedgeIndex; +#endif + Standard_Real paredge; Standard_Integer onbound; - if (SIErest) - {edge = Erest; SIedgeIndex = iErest; paredge = parRest; onbound = obRest; - OOedge = OOE; OOedgeIndex = iOO; OOparedge = OOpar;} - else - {OOedge = Erest;OOedgeIndex = iErest; OOparedge = parRest; onbound = obOO; - edge = OOE; SIedgeIndex = iOO; paredge = OOpar;} - + if (SIErest) { + edge = Erest; +#ifdef OCCT_DEBUG + SIedgeIndex = iErest; +#endif + paredge = parRest; + onbound = obRest; + OOedge = OOE; + OOedgeIndex = iOO; + } else { + OOedge = Erest; + OOedgeIndex = iErest; + onbound = obOO; + edge = OOE; +#ifdef OCCT_DEBUG + SIedgeIndex = iOO; +#endif + paredge = OOpar; + } // PVIndex : // -------- // xpu150399 : BUC60382 @@ -803,8 +818,7 @@ void TopOpeBRep_FacesFiller::ProcessRLine() const TopOpeBRepDS_Transition& llt2 = FaceFaceTransition(2); TopOpeBRepDS_Transition Trans = (ShapeIndex == 1)? llt1 : llt2; Standard_Boolean TransUNK = Trans.IsUnknown(); - TopAbs_Orientation Transori; if (!TransUNK) Transori = Trans.Orientation(TopAbs_IN); - + TopOpeBRepDS_Transition transEdge; Standard_Boolean Tunk = Standard_True; if (!TransUNK) { //xpu281098 PRO12875(edge9,OOface11) if ((absindex==ShapeIndex)||(absindex==3)) { diff --git a/src/TopOpeBRep/TopOpeBRep_vprdeg.cxx b/src/TopOpeBRep/TopOpeBRep_vprdeg.cxx index 2176094ec0..78b3855098 100644 --- a/src/TopOpeBRep/TopOpeBRep_vprdeg.cxx +++ b/src/TopOpeBRep/TopOpeBRep_vprdeg.cxx @@ -1023,13 +1023,12 @@ static Standard_Integer FUN_putInterfonDegenEd if (rkv != rkdg) {TopoDS_Vertex tmp = v; v = ov; ov = tmp; rkv = rkdg;} // ensure v is vertex of dge } - Standard_Boolean setrest = Standard_False; Standard_Integer mkt = 0; Standard_Real par1 = 0.,par2 = 0.; if (on3) { TopoDS_Edge ei = (rki == 1) ? TopoDS::Edge(VP.ArcOnS1()) : TopoDS::Edge(VP.ArcOnS2()); Standard_Real pari = (rki == 1) ? VP.ParameterOnArc1() : VP.ParameterOnArc2(); // if okrest, ei interfers in the compute of transitions for dge - setrest = mktdg.SetRest(pari,ei); + mktdg.SetRest(pari,ei); ok = mktdg.MkTonE(ei,mkt, par1,par2); if ((!ok) || (mkt == NOI)) return NOI; OOEi = ei; paronOOEi = pari; hasOOEi = Standard_True; @@ -1136,7 +1135,7 @@ Standard_Boolean TopOpeBRep_FacesFiller::ProcessVPondgE Standard_Boolean hasOOEi=Standard_False; TopoDS_Edge OOEi; Standard_Real parOOEi; TopOpeBRepDS_Transition T1ondg, T2ondg; Standard_Integer rankdg=0, Iiondg=0; - Standard_Real par1ondg, par2ondg; + Standard_Real par1ondg=0., par2ondg=0.; Standard_Boolean hasdgdata = !myDataforDegenEd.IsEmpty(); if (!hasdgdata) { return Standard_False; diff --git a/src/Units/Units_Lexicon.cxx b/src/Units/Units_Lexicon.cxx index 0fddd1a9a6..cfceccd785 100644 --- a/src/Units/Units_Lexicon.cxx +++ b/src/Units/Units_Lexicon.cxx @@ -123,7 +123,7 @@ Standard_Boolean Units_Lexicon::UpToDate() const TCollection_AsciiString string = FileName(); if(!stat(string.ToCString(),&buf)) { - if(thetime >= buf.st_ctime) + if(thetime >= (Standard_Time)buf.st_ctime) return Standard_True; } diff --git a/src/Units/Units_UnitsDictionary.cxx b/src/Units/Units_UnitsDictionary.cxx index e1388ce250..1ad280efe2 100644 --- a/src/Units/Units_UnitsDictionary.cxx +++ b/src/Units/Units_UnitsDictionary.cxx @@ -317,7 +317,7 @@ Standard_Boolean Units_UnitsDictionary::UpToDate() const struct stat buf; TCollection_AsciiString string = thefilename->String(); if(!stat(string.ToCString(),&buf)) { - if(thetime == buf.st_ctime) return Standard_True; + if(thetime == (Standard_Time)buf.st_ctime) return Standard_True; } return Standard_False; diff --git a/src/Units/Units_UnitsLexicon.cxx b/src/Units/Units_UnitsLexicon.cxx index a53d4c68db..57ff52c614 100644 --- a/src/Units/Units_UnitsLexicon.cxx +++ b/src/Units/Units_UnitsLexicon.cxx @@ -67,7 +67,7 @@ Standard_Boolean Units_UnitsLexicon::UpToDate() const { if(!stat(string.ToCString(),&buf)) { - if(thetime >= buf.st_ctime) return Standard_True; + if(thetime >= (Standard_Time)buf.st_ctime) return Standard_True; } }