From: mbs Date: Wed, 23 Oct 2024 09:44:18 +0000 (+0100) Subject: fixed compile error X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=a8bea6a4d95810bc6a9e131ed2a0788aef2a6ab1;p=modules%2Fsmesh.git fixed compile error --- diff --git a/src/StdMeshers/StdMeshers_QuadToTriaAdaptor.hxx b/src/StdMeshers/StdMeshers_QuadToTriaAdaptor.hxx index 975f619d4..9c1943551 100644 --- a/src/StdMeshers/StdMeshers_QuadToTriaAdaptor.hxx +++ b/src/StdMeshers/StdMeshers_QuadToTriaAdaptor.hxx @@ -44,7 +44,7 @@ class gp_Vec; #include #include -//#include +#include /*! * \brief "Transforms" quadrilateral faces into triangular ones by creation of pyramids @@ -94,19 +94,19 @@ protected: std::set& nodesToMove, const bool isRecursion = false); - // bool DecreaseHeightDifference( const SMDS_MeshElement* pyram, - // const double h2 ); + bool DecreaseHeightDifference( const SMDS_MeshElement* pyram, + const double h2 ); TopoDS_Shape myShape; std::set myRemovedTrias; std::list< const SMDS_MeshNode* > myDegNodes; const SMESH_ElementSearcher* myElemSearcher; - // NCollection_DataMap< const SMDS_MeshElement*, double > myPyramHeight2; + NCollection_DataMap< const SMDS_MeshElement*, double > myPyramHeight2; - // // work buffers of DecreaseHeightDifference() - // std::vector< const SMDS_MeshElement* > myAdjPyrams; - // std::vector myNodes; + // work buffers of DecreaseHeightDifference() + std::vector< const SMDS_MeshElement* > myAdjPyrams; + std::vector myNodes; }; #endif