From: eap Date: Mon, 1 Jul 2019 10:35:28 +0000 (+0300) Subject: #17013 [CEA 17006] Meshing a compsolid with one internal vertex per face X-Git-Tag: V9_4_0a1~27 X-Git-Url: http://git.salome-platform.org/gitweb/?p=modules%2Fsmesh.git;a=commitdiff_plain;h=3f88168d832ee2e20ab5565f9c8d31cb9ed12615 #17013 [CEA 17006] Meshing a compsolid with one internal vertex per face --- diff --git a/src/SMESHUtils/SMESH_Triangulate.cxx b/src/SMESHUtils/SMESH_Triangulate.cxx index 0d0aaca1f..6a60211c6 100644 --- a/src/SMESHUtils/SMESH_Triangulate.cxx +++ b/src/SMESHUtils/SMESH_Triangulate.cxx @@ -81,10 +81,10 @@ struct Triangulate::PolyVertex PolyVertex* Delete(); // compare PolyVertex'es by node - bool operator()(const PolyVertex* a, const PolyVertex* b) const - { - return ( a->_nxyz.Node() < b->_nxyz.Node() ); - } + bool operator()(const PolyVertex* a, const PolyVertex* b) const + { + return ( a->_nxyz.Node() < b->_nxyz.Node() ); + } // set of PolyVertex sorted by mesh node typedef boost::container::flat_set< PolyVertex*, PolyVertex > PVSet; };