Skip to content
Snippets Groups Projects
Commit 2a0d6e7f authored by Praetorius, Simon's avatar Praetorius, Simon
Browse files

added this-> for old compilers in a lambda

parent 8d53dab9
Branches
No related tags found
1 merge request!46add functionality to remove an added marker
...@@ -218,7 +218,7 @@ void ProblemStat<Traits>::createMarker() ...@@ -218,7 +218,7 @@ void ProblemStat<Traits>::createMarker()
auto newMarker auto newMarker
= EstimatorMarker<Grid>::createMarker(componentName, tp, estimates_[tp], grid_); = EstimatorMarker<Grid>::createMarker(componentName, tp, estimates_[tp], grid_);
assert(bool(newMarker)); assert(bool(newMarker));
addMarker(std::move(newMarker)); this->addMarker(std::move(newMarker));
}); });
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment