Salome HOME
23237: EDF 12367 - SIGSEGV with Remove group
[modules/smesh.git] / src / StdMeshers / StdMeshers_SegmentAroundVertex_0D.cxx
index 9036dc18bc6965b99d2c8df29a44324f40a1a1e9..decbc2a6212fd0a1a20bfc67dc0930debc355516 100644 (file)
@@ -38,7 +38,7 @@ StdMeshers_SegmentAroundVertex_0D::StdMeshers_SegmentAroundVertex_0D
   :SMESH_0D_Algo(hypId, studyId, gen)
 {
   _name = "SegmentAroundVertex_0D";
-  // it is assigned to vertices but influence a state of EDGE submeshes 
+  // it is assigned to vertices but influence a state of EDGE submeshes
   _shapeType = (1 << TopAbs_VERTEX);    // 1 bit per shape type
 
   _compatibleHypothesis.push_back("SegmentLengthAroundVertex");
@@ -55,16 +55,17 @@ StdMeshers_SegmentAroundVertex_0D::~StdMeshers_SegmentAroundVertex_0D()
 
 //=======================================================================
 //function : CheckHypothesis
-//purpose  : 
+//purpose  :
 //=======================================================================
 
-bool StdMeshers_SegmentAroundVertex_0D::CheckHypothesis(SMESH_Mesh&                          aMesh,
-                                                        const TopoDS_Shape&                  aShape,
-                                                        SMESH_Hypothesis::Hypothesis_Status& aStatus)
+bool StdMeshers_SegmentAroundVertex_0D::
+CheckHypothesis(SMESH_Mesh&                          aMesh,
+                const TopoDS_Shape&                  aShape,
+                SMESH_Hypothesis::Hypothesis_Status& aStatus)
 {
-  list <const SMESHDS_Hypothesis * >::const_iterator itl;
+  std::list <const SMESHDS_Hypothesis * >::const_iterator itl;
 
-  const list <const SMESHDS_Hypothesis * >&hyps = GetUsedHypothesis(aMesh, aShape);
+  const std::list <const SMESHDS_Hypothesis * >&hyps = GetUsedHypothesis(aMesh, aShape);
   if ( hyps.size() == 0 )
   {
     aStatus = SMESH_Hypothesis::HYP_MISSING;
@@ -84,7 +85,7 @@ bool StdMeshers_SegmentAroundVertex_0D::CheckHypothesis(SMESH_Mesh&
 
 //=======================================================================
 //function : Compute
-//purpose  : 
+//purpose  :
 //=======================================================================
 
 bool StdMeshers_SegmentAroundVertex_0D::Compute(SMESH_Mesh&, const TopoDS_Shape&)