Skip to content

Commit 9e73306

Browse files
committed
Revert "Updated for loop to range-based."
This reverts commit 8fbcaa5.
1 parent 3930aa2 commit 9e73306

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/mesh/mesh_smoother_laplace.C

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ void LaplaceMeshSmoother::smooth() {
5757
// determined. We store the new positions here
5858
std::vector<Point> new_positions;
5959

60-
for (const auto n : make_range(_n_iterations))
60+
for (unsigned int n=0; n<_n_iterations; n++)
6161
{
6262
new_positions.resize(_mesh.max_node_id());
6363

0 commit comments

Comments
 (0)