]> https://gitweb.dealii.org/ - dealii-svn.git/commitdiff
More of this: Qualify a call to a function in the base class with this->.
authorbangerth <bangerth@0785d39b-7218-0410-832d-ea1e28bc413d>
Sun, 21 Aug 2011 00:43:11 +0000 (00:43 +0000)
committerbangerth <bangerth@0785d39b-7218-0410-832d-ea1e28bc413d>
Sun, 21 Aug 2011 00:43:11 +0000 (00:43 +0000)
git-svn-id: https://svn.dealii.org/trunk@24140 0785d39b-7218-0410-832d-ea1e28bc413d

deal.II/include/deal.II/lac/precondition_block.templates.h

index a0c7b490389f536d39ebafb1b89d81ef54867722..c491b78c18ee46c961f85b7c449ca18c543a3f06 100644 (file)
@@ -711,7 +711,7 @@ void PreconditionBlockJacobi<MATRIX,inverse_type>
   typename VectorMemory<Vector<number2> >::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<MATRIX,inverse_type>
 ::step (Vector<number2>       &dst,
        const Vector<number2> &src) const
 {
-  forward_step(dst, dst, src, false);
+  this->forward_step(dst, dst, src, false);
 }
 
 
@@ -1013,7 +1013,7 @@ void PreconditionBlockSOR<MATRIX,inverse_type>
 ::Tstep (Vector<number2>       &dst,
        const Vector<number2> &src) const
 {
-  backward_step(dst, dst, src, true);
+  this->backward_step(dst, dst, src, true);
 }
 
 
@@ -1098,8 +1098,8 @@ void PreconditionBlockSSOR<MATRIX,inverse_type>
 ::step (Vector<number2>       &dst,
        const Vector<number2> &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<MATRIX,inverse_type>
 ::Tstep (Vector<number2>       &dst,
        const Vector<number2> &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);
 }
 
 

In the beginning the Universe was created. This has made a lot of people very angry and has been widely regarded as a bad move.

Douglas Adams


Typeset in Trocchi and Trocchi Bold Sans Serif.