From: Wolfgang Bangerth Date: Sun, 21 Aug 2011 00:43:11 +0000 (+0000) Subject: More of this: Qualify a call to a function in the base class with this->. X-Git-Tag: v8.0.0~3628 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=25d265ab1451ae3d892430a5f621c99f49e74c59;p=dealii.git More of this: Qualify a call to a function in the base class with this->. git-svn-id: https://svn.dealii.org/trunk@24140 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/include/deal.II/lac/precondition_block.templates.h b/deal.II/include/deal.II/lac/precondition_block.templates.h index a0c7b49038..c491b78c18 100644 --- a/deal.II/include/deal.II/lac/precondition_block.templates.h +++ b/deal.II/include/deal.II/lac/precondition_block.templates.h @@ -711,7 +711,7 @@ void PreconditionBlockJacobi typename VectorMemory >::Pointer aux(mem); aux->reinit(dst); - backward_step(*aux, dst, src, true); + this->backward_step(*aux, dst, src, true); dst = *aux; } @@ -1003,7 +1003,7 @@ void PreconditionBlockSOR ::step (Vector &dst, const Vector &src) const { - forward_step(dst, dst, src, false); + this->forward_step(dst, dst, src, false); } @@ -1013,7 +1013,7 @@ void PreconditionBlockSOR ::Tstep (Vector &dst, const Vector &src) const { - backward_step(dst, dst, src, true); + this->backward_step(dst, dst, src, true); } @@ -1098,8 +1098,8 @@ void PreconditionBlockSSOR ::step (Vector &dst, const Vector &src) const { - forward_step(dst, dst, src, false); - backward_step(dst, dst, src, false); + this->forward_step(dst, dst, src, false); + this->backward_step(dst, dst, src, false); } @@ -1109,8 +1109,8 @@ void PreconditionBlockSSOR ::Tstep (Vector &dst, const Vector &src) const { - backward_step(dst, dst, src, true); - forward_step(dst, dst, src, true); + this->backward_step(dst, dst, src, true); + this->forward_step(dst, dst, src, true); }