diff --git a/src/BOPAlgo/BOPAlgo_PaveFiller_3.cxx b/src/BOPAlgo/BOPAlgo_PaveFiller_3.cxx index cf54ded8a0..12ea5ff92f 100644 --- a/src/BOPAlgo/BOPAlgo_PaveFiller_3.cxx +++ b/src/BOPAlgo/BOPAlgo_PaveFiller_3.cxx @@ -460,9 +460,9 @@ void BOPAlgo_PaveFiller::PerformEE() if (bLineLine) { // increase tolerance for Line/Line intersection, but do not update // the vertex till its intersection with some other shape - Standard_Real aTol = (aCR1.Last() - aCR1.First()) / 2.; - if (aTol > aTolVnew) { - aTolVnew = aTol; + Standard_Real aTolMin = (aCR1.Last() - aCR1.First()) / 2.; + if (aTolMin > aTolVnew) { + aTolVnew = aTolMin; } } // <-LXBR diff --git a/src/BOPAlgo/BOPAlgo_PaveFiller_5.cxx b/src/BOPAlgo/BOPAlgo_PaveFiller_5.cxx index 8c40a99cc5..f142aa2b26 100644 --- a/src/BOPAlgo/BOPAlgo_PaveFiller_5.cxx +++ b/src/BOPAlgo/BOPAlgo_PaveFiller_5.cxx @@ -454,7 +454,6 @@ Standard_Integer BOPAlgo_PaveFiller::PerformVerticesEF // Standard_Integer nVx, nVSD, iV, iErr, nE, iFlag, iX, i, aNbPBLI; Standard_Real aT, dummy; - TopoDS_Shape aV; BOPCol_ListIteratorOfListOfShape aItLS; BOPCol_ListIteratorOfListOfInteger aItLI; BOPDS_PDS aPDS; @@ -504,12 +503,7 @@ Standard_Integer BOPAlgo_PaveFiller::PerformVerticesEF const TopoDS_Shape& aVx = aItLS.Value(); nVx = aPDS->Index(aVx); // - if (aPDS->HasShapeSD(nVx, nVSD)) { - aV = aPDS->Shape(nVSD); - } - else { - aV = aVx; - } + const TopoDS_Shape& aV = (aPDS->HasShapeSD(nVx, nVSD) ? aPDS->Shape(nVSD) : aVx); BOPCol_ListOfShape* pLst = aImages.ChangeSeek(aV); if (!pLst) { pLst = &aImages.ChangeFromIndex(aImages.Add(aV, BOPCol_ListOfShape())); @@ -554,12 +548,7 @@ Standard_Integer BOPAlgo_PaveFiller::PerformVerticesEF const TopoDS_Shape& aVx=aItLS.Value(); nVx=aPDS->Index(aVx); // - if (aPDS->HasShapeSD(nVx, nVSD)) { - aV=aPDS->Shape(nVSD); - } - else { - aV=aVx; - } + const TopoDS_Shape& aV = (aPDS->HasShapeSD(nVx, nVSD) ? aPDS->Shape(nVSD) : aVx); iV = aMVI.Find(aV); // BOPDS_CoupleOfPaveBlocks &aCPB=theMVCPB.ChangeFromKey(aVx); diff --git a/src/Standard/Standard_Type.hxx b/src/Standard/Standard_Type.hxx index 87b52c2525..c6819aa5bd 100644 --- a/src/Standard/Standard_Type.hxx +++ b/src/Standard/Standard_Type.hxx @@ -184,8 +184,12 @@ namespace opencascade { template const Handle(Standard_Type)& type_instance::get () { +#if (defined(_MSC_VER) && _MSC_VER < 1800) || \ + (defined(__GNUC__) && (__GNUC__ < 4 || (__GNUC__ == 4 && __GNUC_MINOR__ < 3)) && \ + ! defined(__clang__) && ! defined(__INTEL_COMPILER)) // ensure that myInstance is instantiated (void)myInstance; +#endif // static variable inside function ensures that descriptors // are initialized in correct sequence diff --git a/src/StdDrivers/StdDrivers_DocumentRetrievalDriver.hxx b/src/StdDrivers/StdDrivers_DocumentRetrievalDriver.hxx index 3cbb65be3e..d68339758a 100644 --- a/src/StdDrivers/StdDrivers_DocumentRetrievalDriver.hxx +++ b/src/StdDrivers/StdDrivers_DocumentRetrievalDriver.hxx @@ -21,7 +21,7 @@ class StdDrivers_DocumentRetrievalDriver : public StdLDrivers_DocumentRetrievalD { public: //! Register types. - Standard_EXPORT virtual void BindTypes (StdObjMgt_MapOfInstantiators& theMap); + Standard_EXPORT virtual void BindTypes (StdObjMgt_MapOfInstantiators& theMap) Standard_OVERRIDE; DEFINE_STANDARD_RTTIEXT (StdDrivers_DocumentRetrievalDriver, StdLDrivers_DocumentRetrievalDriver) }; diff --git a/src/StdLDrivers/StdLDrivers_DocumentRetrievalDriver.hxx b/src/StdLDrivers/StdLDrivers_DocumentRetrievalDriver.hxx index af63116504..4661fdd58d 100644 --- a/src/StdLDrivers/StdLDrivers_DocumentRetrievalDriver.hxx +++ b/src/StdLDrivers/StdLDrivers_DocumentRetrievalDriver.hxx @@ -24,12 +24,12 @@ class StdLDrivers_DocumentRetrievalDriver : public PCDM_RetrievalDriver { public: //! Create an empty TDocStd_Document. - Standard_EXPORT virtual Handle(CDM_Document) CreateDocument(); + Standard_EXPORT virtual Handle(CDM_Document) CreateDocument() Standard_OVERRIDE; //! Retrieve the content of a file into a new document. Standard_EXPORT virtual void Read (const TCollection_ExtendedString& theFileName, const Handle(CDM_Document)& theNewDocument, - const Handle(CDM_Application)& theApplication); + const Handle(CDM_Application)& theApplication) Standard_OVERRIDE; DEFINE_STANDARD_RTTIEXT (StdLDrivers_DocumentRetrievalDriver, PCDM_RetrievalDriver)