Skip to content
Snippets Groups Projects
Commit d473416a authored by Christian Engwer's avatar Christian Engwer
Browse files

unsigned vs. signed int

[[Imported from SVN: r3004]]
parent d83a57af
No related branches found
No related tags found
No related merge requests found
......@@ -711,7 +711,7 @@ void assertNeighbor (Grid &g)
}
}
// check that all faces were visited
for (int i=0; i<visited.size(); i++) assert(visited[i] == true);
for (size_t i=0; i<visited.size(); i++) assert(visited[i] == true);
}
}
}
......
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