diff --git a/src/BRepBuilderAPI/BRepBuilderAPI_FastSewing.cxx b/src/BRepBuilderAPI/BRepBuilderAPI_FastSewing.cxx index a4ac6438fc..712847cc0d 100644 --- a/src/BRepBuilderAPI/BRepBuilderAPI_FastSewing.cxx +++ b/src/BRepBuilderAPI/BRepBuilderAPI_FastSewing.cxx @@ -43,7 +43,7 @@ static Standard_Integer IntersectionOfSets( const NCollection_List& theSet1, const NCollection_List& theSet2) { - const Standard_Integer anIntMax = IntegerLast(); + constexpr Standard_Integer anIntMax = IntegerLast(); Standard_Integer aRetVal = anIntMax; for(NCollection_List::Iterator anIt1 = theSet1.begin().Iterator(); diff --git a/src/Bnd/Bnd_Box.cxx b/src/Bnd/Bnd_Box.cxx index eba846a5f5..370db15bbc 100644 --- a/src/Bnd/Bnd_Box.cxx +++ b/src/Bnd/Bnd_Box.cxx @@ -720,7 +720,7 @@ static Standard_Boolean IsSegmentOut(Standard_Real x1,Standard_Real y1, Standard_Real xs1,Standard_Real ys1, Standard_Real xs2,Standard_Real ys2) { - Standard_Real eps = RealSmall(); + constexpr Standard_Real eps = RealSmall(); Standard_Real xsmin = Min (xs1, xs2); Standard_Real xsmax = Max (xs1, xs2); Standard_Real ysmin = Min (ys1, ys2); @@ -765,7 +765,7 @@ Standard_Boolean Bnd_Box::IsOut(const gp_Pnt& P1, const gp_Pnt& P2, const gp_Dir if (IsWhole()) return Standard_False; else if (IsVoid()) return Standard_True; - Standard_Real eps = RealSmall(); + constexpr Standard_Real eps = RealSmall(); Standard_Real myXmin, myYmin, myZmin, myXmax, myYmax, myZmax; Get (myXmin, myYmin, myZmin, myXmax, myYmax, myZmax); diff --git a/src/BndLib/BndLib_AddSurface.cxx b/src/BndLib/BndLib_AddSurface.cxx index e02780b13a..9a9bc53acc 100644 --- a/src/BndLib/BndLib_AddSurface.cxx +++ b/src/BndLib/BndLib_AddSurface.cxx @@ -180,7 +180,7 @@ static void TreatInfinitePlane(const gp_Pln &aPlane, { // Get 3 coordinate axes of the plane. const gp_Dir &aNorm = aPlane.Axis().Direction(); - const Standard_Real anAngularTol = RealEpsilon(); + constexpr Standard_Real anAngularTol = RealEpsilon(); // Get location of the plane as its barycenter gp_Pnt aLocation = BaryCenter(aPlane, aUMin, aUMax, aVMin, aVMax); diff --git a/src/GccAna/GccAna_Lin2dTanPer.cxx b/src/GccAna/GccAna_Lin2dTanPer.cxx index fc30993b7d..6b1433311e 100644 --- a/src/GccAna/GccAna_Lin2dTanPer.cxx +++ b/src/GccAna/GccAna_Lin2dTanPer.cxx @@ -99,7 +99,7 @@ GccAna_Lin2dTanPer:: IntAna2d_AnaIntersection Intp(linsol(1),TheCircle); if (Intp.IsDone()) { if (!Intp.IsEmpty()) { - Standard_Real maxdist = RealLast(); + constexpr Standard_Real maxdist = RealLast(); for (Standard_Integer i = 1 ; i <= Intp.NbPoints() ; i++) { if (Intp.Point(i).Value().Distance(ThePnt) < maxdist) { pntint2sol(1) = Intp.Point(i).Value(); @@ -244,7 +244,7 @@ GccAna_Lin2dTanPer:: IntAna2d_AnaIntersection Intp(linsol(NbrSol),TheCircle); if (Intp.IsDone()) { if (!Intp.IsEmpty()) { - Standard_Real maxdist = RealLast(); + constexpr Standard_Real maxdist = RealLast(); for (Standard_Integer i = 1 ; i <= Intp.NbPoints() ; i++) { if (Intp.Point(i).Value().Distance(pnttg1sol(NbrSol)) < maxdist) { pntint2sol(NbrSol) = Intp.Point(i).Value(); diff --git a/src/Graphic3d/Graphic3d_Structure.cxx b/src/Graphic3d/Graphic3d_Structure.cxx index eace8db06f..e4ff9c89bf 100644 --- a/src/Graphic3d/Graphic3d_Structure.cxx +++ b/src/Graphic3d/Graphic3d_Structure.cxx @@ -668,8 +668,8 @@ Bnd_Box Graphic3d_Structure::MinMaxValues (const Standard_Boolean theToIgnoreInf aResult.Update (aBox.CornerMin().x(), aBox.CornerMin().y(), aBox.CornerMin().z(), aBox.CornerMax().x(), aBox.CornerMax().y(), aBox.CornerMax().z()); - Standard_Real aLimMin = ShortRealFirst() + 1.0; - Standard_Real aLimMax = ShortRealLast() - 1.0; + constexpr Standard_Real aLimMin = ShortRealFirst() + 1.0; + constexpr Standard_Real aLimMax = ShortRealLast() - 1.0; gp_Pnt aMin = aResult.CornerMin(); gp_Pnt aMax = aResult.CornerMax(); if (aMin.X() < aLimMin && aMin.Y() < aLimMin && aMin.Z() < aLimMin @@ -847,8 +847,8 @@ void Graphic3d_Structure::Transforms (const gp_Trsf& theTrsf, const Standard_Real theX, const Standard_Real theY, const Standard_Real theZ, Standard_Real& theNewX, Standard_Real& theNewY, Standard_Real& theNewZ) { - const Standard_Real aRL = RealLast(); - const Standard_Real aRF = RealFirst(); + constexpr Standard_Real aRL = RealLast(); + constexpr Standard_Real aRF = RealFirst(); theNewX = theX; theNewY = theY; theNewZ = theZ; diff --git a/src/IntTools/IntTools_FaceFace.cxx b/src/IntTools/IntTools_FaceFace.cxx index d2c99d7acb..3299a49e29 100644 --- a/src/IntTools/IntTools_FaceFace.cxx +++ b/src/IntTools/IntTools_FaceFace.cxx @@ -977,7 +977,7 @@ void IntTools_FaceFace::MakeCurve(const Standard_Integer Index, fprm=aSeqFprm(i); lprm=aSeqLprm(i); // - Standard_Real aRealEpsilon=RealEpsilon(); + constexpr Standard_Real aRealEpsilon=RealEpsilon(); if (Abs(fprm) > aRealEpsilon || Abs(lprm-2.*M_PI) > aRealEpsilon) { //============================================== //// diff --git a/src/LocOpe/LocOpe_CSIntersector.cxx b/src/LocOpe/LocOpe_CSIntersector.cxx index bc4ef66d29..26cf667e8b 100644 --- a/src/LocOpe/LocOpe_CSIntersector.cxx +++ b/src/LocOpe/LocOpe_CSIntersector.cxx @@ -89,8 +89,8 @@ void LocOpe_CSIntersector::Perform(const LocOpe_SequenceOfLin& Slin) myPoints = (LocOpe_SequenceOfPntFace *) new LocOpe_SequenceOfPntFace[myNbelem]; - Standard_Real binf = RealFirst(); - Standard_Real bsup = RealLast(); + constexpr Standard_Real binf = RealFirst(); + constexpr Standard_Real bsup = RealLast(); TopExp_Explorer exp(myShape,TopAbs_FACE); for (; exp.More(); exp.Next()) { const TopoDS_Face& theface = TopoDS::Face(exp.Current()); diff --git a/src/MeshVS/MeshVS_NodalColorPrsBuilder.cxx b/src/MeshVS/MeshVS_NodalColorPrsBuilder.cxx index 01ece0cefe..655edb7966 100644 --- a/src/MeshVS/MeshVS_NodalColorPrsBuilder.cxx +++ b/src/MeshVS/MeshVS_NodalColorPrsBuilder.cxx @@ -79,7 +79,8 @@ public: static inline Standard_Integer getNearestPow2( Standard_Integer theValue ) { // Precaution against overflow - Standard_Integer aHalfMax = IntegerLast() >> 1, aRes = 1; + constexpr Standard_Integer aHalfMax = IntegerLast() >> 1; + Standard_Integer aRes = 1; if ( theValue > aHalfMax ) theValue = aHalfMax; while ( aRes < theValue ) aRes <<= 1; return aRes; diff --git a/src/QABugs/QABugs_11.cxx b/src/QABugs/QABugs_11.cxx index e84883a962..d871614a92 100644 --- a/src/QABugs/QABugs_11.cxx +++ b/src/QABugs/QABugs_11.cxx @@ -2187,10 +2187,20 @@ static Standard_Integer OCC6143 (Draw_Interpretor& di, Standard_Integer argc, co di << "(Integer) Overflow..."; //std::cout.flush(); di << "\n"; - Standard_Integer res, i=IntegerLast(); - res = i + 1; - //++++ std::cout << " -- "< tolm ) BL.Normal(N); diff --git a/src/math/math_BissecNewton.cxx b/src/math/math_BissecNewton.cxx index 88eecc5a2e..db12892719 100644 --- a/src/math/math_BissecNewton.cxx +++ b/src/math/math_BissecNewton.cxx @@ -67,7 +67,7 @@ void math_BissecNewton::Perform(math_FunctionWithDerivative& F, return; } // Modified by Sergey KHROMOV - Wed Jan 22 12:06:45 2003 Begin - Standard_Real aFTol = RealEpsilon(); + constexpr Standard_Real aFTol = RealEpsilon(); // if(fl * fh >= 0.0) { if(fl * fh > aFTol*aFTol) {