Skip to content
Snippets Groups Projects
Commit c1b3076e authored by Christophe Geuzaine's avatar Christophe Geuzaine
Browse files

sort set<MVertex*> with MVertexLessThanNum

parent a17cf305
No related branches found
No related tags found
No related merge requests found
...@@ -110,7 +110,7 @@ bool tetgenmesh::reconstructmesh(void *p) ...@@ -110,7 +110,7 @@ bool tetgenmesh::reconstructmesh(void *p)
// Get the set of vertices from GRegion. // Get the set of vertices from GRegion.
{ {
std::set<MVertex*> all; std::set<MVertex*, MVertexLessThanNum> all;
std::list<GFace*> f = _gr->faces(); std::list<GFace*> f = _gr->faces();
for (std::list<GFace*>::iterator it = f.begin(); it != f.end(); ++it) { for (std::list<GFace*>::iterator it = f.begin(); it != f.end(); ++it) {
GFace *gf = *it; GFace *gf = *it;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment