Skip to content
Snippets Groups Projects
Commit 6ad6f53a authored by Oliver Sander's avatar Oliver Sander Committed by sander
Browse files

Fix a compiler warning

[[Imported from SVN: r9451]]
parent 411d0fae
No related branches found
No related tags found
No related merge requests found
......@@ -221,7 +221,7 @@ void RiemannianTrustRegionSolver<GridType,TargetSpace>::solve()
for (int i=0; i<maxTrustRegionSteps_; i++) {
/* std::cout << "current iterate:\n";
for (int j=0; j<x_.size(); j++)
for (size_t j=0; j<x_.size(); j++)
std::cout << x_[j] << std::endl;*/
Dune::Timer totalTimer;
......
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