From: wolf Date: Thu, 14 Jan 1999 15:30:58 +0000 (+0000) Subject: Make this thing compile; I forgot to work around access restrictions. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7657ad5cdd28b7b70bbc4d0f94d75541ec629d40;p=dealii-svn.git Make this thing compile; I forgot to work around access restrictions. git-svn-id: https://svn.dealii.org/trunk@731 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/deal.II/source/fe/fe_system.cc b/deal.II/deal.II/source/fe/fe_system.cc index 440eb66eb6..c845fba634 100644 --- a/deal.II/deal.II/source/fe/fe_system.cc +++ b/deal.II/deal.II/source/fe/fe_system.cc @@ -30,15 +30,15 @@ void FESystem::initialize_matrices () { { restriction[child] (i*n_sub_elements + n, j*n_sub_elements + n) - = base_element->restriction[child](i,j); + = base_element->restrict(child)(i,j); prolongation[child] (i*n_sub_elements + n, j*n_sub_elements + n) - = base_element->prolongation[child](i,j); + = base_element->prolongate(child)(i,j); }; interface_constraints (i*n_sub_elements + n, j*n_sub_elements + n) - = base_element->interface_constraints(i,j); + = base_element->constraints()(i,j); }; };