From 9d2039bc456d91d351bc723c3f3aae8d3f3a5766 Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Tue, 25 Feb 2003 15:13:23 +0000 Subject: [PATCH] Use this-> where appropriate. git-svn-id: https://svn.dealii.org/trunk@7241 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/deal.II/source/fe/fe.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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) || -- 2.39.5