From: eap Date: Tue, 18 Nov 2014 10:08:18 +0000 (+0300) Subject: 22808: EDF SMESH: Regression with 3D Extrusion/ViscousLayers in Salome V7_5_BR X-Git-Tag: V7_5_0rc1~2^2 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=b9986eb294440b54b4d95e24af5b86bb0478de26;p=modules%2Fsmesh.git 22808: EDF SMESH: Regression with 3D Extrusion/ViscousLayers in Salome V7_5_BR --- diff --git a/src/StdMeshers/StdMeshers_Prism_3D.cxx b/src/StdMeshers/StdMeshers_Prism_3D.cxx index f473b36ba..212ea62b8 100644 --- a/src/StdMeshers/StdMeshers_Prism_3D.cxx +++ b/src/StdMeshers/StdMeshers_Prism_3D.cxx @@ -2353,7 +2353,7 @@ bool StdMeshers_Prism_3D::isSimpleBottom( const Prism_3D::TPrismTopo& thePrism ) TopoDS_Vertex commonV; const list< TopoDS_Edge >& botEdges = thePrism.myBottomEdges; list< TopoDS_Edge >::const_iterator edge = botEdges.begin(); - for ( ; edge != botEdges.end(); ++edge ) + while ( edge != botEdges.end() ) { if ( SMESH_Algo::isDegenerated( *edge )) return false;