From f4f09c357309e517d487f22fc75b928e8b09ac3e Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Tue, 20 Jun 2023 18:27:34 -0600 Subject: [PATCH] Minor adjustment to step-77. --- examples/step-77/step-77.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); -- 2.39.5