From: Wolfgang Bangerth Date: Wed, 21 Jun 2023 00:27:34 +0000 (-0600) Subject: Minor adjustment to step-77. X-Git-Tag: v9.5.0-rc1~73^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f4f09c357309e517d487f22fc75b928e8b09ac3e;p=dealii.git Minor adjustment to step-77. --- diff --git a/examples/step-77/step-77.cc b/examples/step-77/step-77.cc index dd97e55d71..76366673cc 100644 --- a/examples/step-77/step-77.cc +++ b/examples/step-77/step-77.cc @@ -614,7 +614,7 @@ namespace Step77 nonlinear_solver.solve_with_jacobian = [&](const Vector &rhs, Vector & dst, const double tolerance) { - this->solve(rhs, dst, tolerance); + solve(rhs, dst, tolerance); }; nonlinear_solver.solve(current_solution);