From: Guido Kanschat Date: Thu, 19 Jan 2006 21:53:16 +0000 (+0000) Subject: add this's X-Git-Tag: v8.0.0~12571 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1604025090848a56fdb724b5106e0a84f0aa6f3b;p=dealii.git add this's git-svn-id: https://svn.dealii.org/trunk@12104 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/deal.II/source/fe/fe_raviart_thomas.cc b/deal.II/deal.II/source/fe/fe_raviart_thomas.cc index d50f499d1c..7fd78f79d6 100644 --- a/deal.II/deal.II/source/fe/fe_raviart_thomas.cc +++ b/deal.II/deal.II/source/fe/fe_raviart_thomas.cc @@ -276,7 +276,7 @@ void FE_RaviartThomas::initialize_restriction() { for (unsigned int i=0;i::children_per_cell;++i) - restriction[i].reinit(0,0); + this->restriction[i].reinit(0,0); } #else @@ -345,7 +345,7 @@ FE_RaviartThomas::initialize_restriction() * this->shape_value_component(face*this->dofs_per_face+i_face, q_sub.point(k), GeometryInfo::unit_normal_direction[face]); - restriction[child](face*this->dofs_per_face+i_face, + this->restriction[child](face*this->dofs_per_face+i_face, i_child) = s; } } @@ -383,7 +383,7 @@ FE_RaviartThomas::initialize_restriction() s += q_sub.weight(k) * this->shape_value_component(i_child, q_cell.point(k), d) * polynomials[d]->compute_value(i_weight, q_sub.point(k)); - restriction[child](start_cell_dofs+i_weight*dim+d, + this->restriction[child](start_cell_dofs+i_weight*dim+d, i_child) = s; } }