There was an error while loading. Please reload this page.
1 parent 3930aa2 commit 9e73306Copy full SHA for 9e73306
src/mesh/mesh_smoother_laplace.C
@@ -57,7 +57,7 @@ void LaplaceMeshSmoother::smooth() {
57
// determined. We store the new positions here
58
std::vector<Point> new_positions;
59
60
- for (const auto n : make_range(_n_iterations))
+ for (unsigned int n=0; n<_n_iterations; n++)
61
{
62
new_positions.resize(_mesh.max_node_id());
63
0 commit comments