From: Wolfgang Bangerth Date: Mon, 3 Feb 2003 17:03:52 +0000 (+0000) Subject: Use this-> to disambiguate. X-Git-Tag: v8.0.0~17004 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f228afc32f2f312210bc0bfb5fb1a2f474ce9c7c;p=dealii.git Use this-> to disambiguate. git-svn-id: https://svn.dealii.org/trunk@7008 0785d39b-7218-0410-832d-ea1e28bc413d --- 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); } }