From 746cb7c32872b2aa2a261f65b42cef3e826b1d6e Mon Sep 17 00:00:00 2001 From: msv Date: Tue, 1 Oct 2019 23:06:35 +0300 Subject: [PATCH] 0031020: Coding - invalid inline usage in BRepBlend_AppSurface BRepBlend_AppSurface and some other classes have been corrected to avoid inlining member functions in .cxx code. --- src/BRepBlend/BRepBlend_AppSurface.cxx | 4 ++-- src/BRepMesh/BRepMesh_Delaun.cxx | 8 ++++---- src/MeshVS/MeshVS_DummySensitiveEntity.cxx | 2 +- src/NCollection/NCollection_BaseSequence.cxx | 6 ------ src/NCollection/NCollection_BaseSequence.hxx | 7 ++++++- src/ShapeFix/ShapeFix_Edge.cxx | 2 +- 6 files changed, 14 insertions(+), 15 deletions(-) diff --git a/src/BRepBlend/BRepBlend_AppSurface.cxx b/src/BRepBlend/BRepBlend_AppSurface.cxx index 9126000071..460d599fc2 100644 --- a/src/BRepBlend/BRepBlend_AppSurface.cxx +++ b/src/BRepBlend/BRepBlend_AppSurface.cxx @@ -126,8 +126,8 @@ Standard_Real BRepBlend_AppSurface::TolCurveOnSurf(const Standard_Integer Index) return approx.TolCurveOnSurf(Index); } -inline void BRepBlend_AppSurface::TolReached (Standard_Real& Tol3d, - Standard_Real& Tol2d) const +void BRepBlend_AppSurface::TolReached (Standard_Real& Tol3d, + Standard_Real& Tol2d) const { Tol3d = approx.MaxErrorOnSurf(); Tol2d = 0; diff --git a/src/BRepMesh/BRepMesh_Delaun.cxx b/src/BRepMesh/BRepMesh_Delaun.cxx index c87bc6ce62..761dabdcf2 100644 --- a/src/BRepMesh/BRepMesh_Delaun.cxx +++ b/src/BRepMesh/BRepMesh_Delaun.cxx @@ -1224,9 +1224,9 @@ Standard_Boolean BRepMesh_Delaun::checkIntersection( //function : addTriangle //purpose : Add a triangle based on the given oriented edges into mesh //======================================================================= -inline void BRepMesh_Delaun::addTriangle( const Standard_Integer (&theEdgesId)[3], - const Standard_Boolean (&theEdgesOri)[3], - const Standard_Integer (&theNodesId)[3] ) +void BRepMesh_Delaun::addTriangle( const Standard_Integer (&theEdgesId)[3], + const Standard_Boolean (&theEdgesOri)[3], + const Standard_Integer (&theNodesId)[3] ) { Standard_Integer aNewTriangleId = myMeshData->AddElement(BRepMesh_Triangle(theEdgesId, @@ -1890,7 +1890,7 @@ void BRepMesh_Delaun::meshPolygon(IMeshData::SequenceOfInteger& thePolygon, //function : meshElementaryPolygon //purpose : Triangulation of closed polygon containing only three edges. //======================================================================= -inline Standard_Boolean BRepMesh_Delaun::meshElementaryPolygon( +Standard_Boolean BRepMesh_Delaun::meshElementaryPolygon( const IMeshData::SequenceOfInteger& thePolygon) { Standard_Integer aPolyLen = thePolygon.Length(); diff --git a/src/MeshVS/MeshVS_DummySensitiveEntity.cxx b/src/MeshVS/MeshVS_DummySensitiveEntity.cxx index 143f277daa..b02f25a99a 100644 --- a/src/MeshVS/MeshVS_DummySensitiveEntity.cxx +++ b/src/MeshVS/MeshVS_DummySensitiveEntity.cxx @@ -80,7 +80,7 @@ Standard_Boolean MeshVS_DummySensitiveEntity::HasInitLocation() const //function : InvInitLocation //purpose : //======================================================================= -inline gp_GTrsf MeshVS_DummySensitiveEntity::InvInitLocation() const +gp_GTrsf MeshVS_DummySensitiveEntity::InvInitLocation() const { return gp_GTrsf(); } diff --git a/src/NCollection/NCollection_BaseSequence.cxx b/src/NCollection/NCollection_BaseSequence.cxx index 69321525d0..08a0a45934 100644 --- a/src/NCollection/NCollection_BaseSequence.cxx +++ b/src/NCollection/NCollection_BaseSequence.cxx @@ -20,12 +20,6 @@ #include #include -inline void NCollection_BaseSequence::Nullify () -{ - myFirstItem = myLastItem = myCurrentItem = NULL; - myCurrentIndex = mySize = 0; -} - //======================================================================= //function : ClearSeq //purpose : removes all items from the current sequence diff --git a/src/NCollection/NCollection_BaseSequence.hxx b/src/NCollection/NCollection_BaseSequence.hxx index 42f4197b0e..bbb0df369c 100644 --- a/src/NCollection/NCollection_BaseSequence.hxx +++ b/src/NCollection/NCollection_BaseSequence.hxx @@ -163,7 +163,12 @@ public: // Standard_EXPORT NCollection_BaseSequence (const NCollection_BaseSequence& Other); - inline void Nullify (); + void Nullify() + { + myFirstItem = myLastItem = myCurrentItem = NULL; + myCurrentIndex = mySize = 0; + } + friend class Iterator; }; diff --git a/src/ShapeFix/ShapeFix_Edge.cxx b/src/ShapeFix/ShapeFix_Edge.cxx index d7ff00f4d4..1cbde04eba 100644 --- a/src/ShapeFix/ShapeFix_Edge.cxx +++ b/src/ShapeFix/ShapeFix_Edge.cxx @@ -862,7 +862,7 @@ Standard_Boolean ShapeFix_Edge::FixSameParameter(const TopoDS_Edge& edge, //purpose : //======================================================================= -inline Handle(ShapeBuild_ReShape) ShapeFix_Edge::Context() const +Handle(ShapeBuild_ReShape) ShapeFix_Edge::Context() const { return myContext; }