diff --git a/Solver/multiscaleLaplace.cpp b/Solver/multiscaleLaplace.cpp index 9a53da220f0b71f81397447229252c574b8353a3..9e69c27f7eb85c84aea3f9b3780818352bae88d6 100644 --- a/Solver/multiscaleLaplace.cpp +++ b/Solver/multiscaleLaplace.cpp @@ -467,7 +467,7 @@ static void connectedRegions (std::vector<MElement*> &elements, std::vector<MElement*> temp; temp.insert(temp.begin(), group.begin(), group.end()); regions.push_back(temp); - for ( std::set<MEdge>::iterator it = touched.begin() ; it != touched.end();++it) + for ( std::set<MEdge,Less_Edge>::iterator it = touched.begin() ; it != touched.end();++it) e2e.erase(*it); } }