From: vsr Date: Tue, 18 Nov 2014 11:24:52 +0000 (+0300) Subject: Merge branch 'master' into V7_5_BR X-Git-Tag: V7_5_0rc1~2 X-Git-Url: http://git.salome-platform.org/gitweb/?p=modules%2Fsmesh.git;a=commitdiff_plain;h=e22a84e549fd4ec51d4107c35a4106efd31b2c0e;hp=381c06d4b74ecbc55b08a7fd1f73ff0ee419a2f7 Merge branch 'master' into 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;