From b3085d6075ef059d1f681dd5bc0bfbf56709593e Mon Sep 17 00:00:00 2001 From: wolf Date: Mon, 3 Feb 2003 17:03:52 +0000 Subject: [PATCH] Use this-> to disambiguate. git-svn-id: https://svn.dealii.org/trunk@7008 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/lac/include/lac/solver_gmres.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/deal.II/lac/include/lac/solver_gmres.h b/deal.II/lac/include/lac/solver_gmres.h index acc35638c6..084275e2c7 100644 --- a/deal.II/lac/include/lac/solver_gmres.h +++ b/deal.II/lac/include/lac/solver_gmres.h @@ -495,7 +495,7 @@ SolverGMRES::solve (const MATRIX &A, precondition.vmult(*r,v); double res = r->l2_norm(); - iteration_state = control().check ( + iteration_state = this->control().check ( accumulated_iterations, res); if (iteration_state != SolverControl::iterate) @@ -612,7 +612,7 @@ SolverGMRES::solve (const MATRIX &A, { const double res=r->l2_norm(); - iteration_state = control().check ( + iteration_state = this->control().check ( accumulated_iterations, res); } else @@ -620,7 +620,7 @@ SolverGMRES::solve (const MATRIX &A, precondition.vmult(*x_, *r); const double preconditioned_res=x_->l2_norm(); - iteration_state = control().check ( + iteration_state = this->control().check ( accumulated_iterations, preconditioned_res); } } -- 2.39.5