From: Wolfgang Bangerth Date: Tue, 25 Feb 2003 15:13:23 +0000 (+0000) Subject: Use this-> where appropriate. X-Git-Tag: v8.0.0~16844 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9d2039bc456d91d351bc723c3f3aae8d3f3a5766;p=dealii.git Use this-> where appropriate. git-svn-id: https://svn.dealii.org/trunk@7241 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/deal.II/source/fe/fe.cc b/deal.II/deal.II/source/fe/fe.cc index 5e892ad6c9..861e0a8ef6 100644 --- a/deal.II/deal.II/source/fe/fe.cc +++ b/deal.II/deal.II/source/fe/fe.cc @@ -265,10 +265,10 @@ FiniteElementBase::prolongation_is_implemented () const { for (unsigned int c=0; c::children_per_cell; ++c) { - Assert ((prolongation[c].m() == dofs_per_cell) || + Assert ((prolongation[c].m() == this->dofs_per_cell) || (prolongation[c].m() == 0), ExcInternalError()); - Assert ((prolongation[c].n() == dofs_per_cell) || + Assert ((prolongation[c].n() == this->dofs_per_cell) || (prolongation[c].n() == 0), ExcInternalError()); if ((prolongation[c].m() == 0) ||