From 3f88168d832ee2e20ab5565f9c8d31cb9ed12615 Mon Sep 17 00:00:00 2001 From: eap Date: Mon, 1 Jul 2019 13:35:28 +0300 Subject: [PATCH] #17013 [CEA 17006] Meshing a compsolid with one internal vertex per face --- src/SMESHUtils/SMESH_Triangulate.cxx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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; }; -- 2.39.2