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

fix msvc compile

parent 77b57085
Branches
Tags
No related merge requests found
...@@ -13,7 +13,7 @@ void lloydAlgorithm::operator () ( GFace * gf) { ...@@ -13,7 +13,7 @@ void lloydAlgorithm::operator () ( GFace * gf) {
std::set<MVertex*> all; std::set<MVertex*> all;
// get all the points of the face ... // get all the points of the face ...
for (int i=0;i<gf->getNumMeshElements();i++){ for (unsigned int i = 0; i < gf->getNumMeshElements(); i++){
MElement *e = gf->getMeshElement(i); MElement *e = gf->getMeshElement(i);
for (int j = 0;j<e->getNumVertices(); j++){ for (int j = 0;j<e->getNumVertices(); j++){
all.insert(e->getVertex(j)); all.insert(e->getVertex(j));
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment