Skip to content
Snippets Groups Projects
Commit a6a514ee authored by Carsten Gräser's avatar Carsten Gräser
Browse files

Capture temporary by value.

The previous version should not have been worked since we stored
a reference to a temporary in the lambda. Surpisingly even
valgrind did not complain.
parent 53bc258f
No related branches found
No related tags found
1 merge request!4Feature/flexible loopsolver monitoring
......@@ -200,7 +200,7 @@ namespace Dune {
Criterion maxIterCriterion(const SolverType& solver, int maxIterations)
{
return Criterion(
[&](){
[&solver, maxIterations](){
int i = solver.iterationCount();
return std::make_tuple( i>=maxIterations, Dune::formatString("% 7d", i) );
},
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment