win32 compilation of the Mesh module.

This commit is contained in:
rnv 2012-02-01 12:31:41 +00:00
parent 35504e1535
commit 24df7fa1ab
2 changed files with 2 additions and 1 deletions

View File

@ -36,6 +36,7 @@
#include <map>
#include <list>
#include <set>
#include <cassert>
typedef std::map<const SMDS_MeshElement*,
std::list<const SMDS_MeshElement*> > TElemOfElemListMap;

View File

@ -2062,7 +2062,7 @@ TopoDS_Edge StdMeshers_ProjectionUtils::GetBoundaryEdge(const TopoDS_Shape& edge
PShapeIteratorPtr faceIt = SMESH_MesherHelper::GetAncestors( edge, mesh, TopAbs_FACE );
while ( const TopoDS_Shape* face = faceIt->next() )
if ( facesOfEdgeContainer.Contains( *face ))
if ( facesNearEdge.Add( *face ) and facesNearEdge.Extent() > 1 )
if ( facesNearEdge.Add( *face ) && facesNearEdge.Extent() > 1 )
break;
if ( facesNearEdge.Extent() == 1 )
return edge;