From e7548844717b7bcb36412e42e52f9c9385b8c1f2 Mon Sep 17 00:00:00 2001 From: heister Date: Sun, 21 Aug 2011 00:12:47 +0000 Subject: [PATCH] qualify function call with this-> git-svn-id: https://svn.dealii.org/trunk@24129 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/source/fe/fe_values.cc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/deal.II/source/fe/fe_values.cc b/deal.II/source/fe/fe_values.cc index 6b83ad9d54..4c3c883283 100644 --- a/deal.II/source/fe/fe_values.cc +++ b/deal.II/source/fe/fe_values.cc @@ -3431,7 +3431,7 @@ FEValues::reinit (const typename DoFHandler::cell_it typename FEVB::ExcFEDontMatch()); this->maybe_invalidate_previous_present_cell (cell); - check_cell_similarity(cell); + this->check_cell_similarity(cell); // set new cell. auto_ptr will take // care that old object gets @@ -3466,7 +3466,7 @@ FEValues::reinit (const typename hp::DoFHandler::cel typename FEVB::ExcFEDontMatch()); this->maybe_invalidate_previous_present_cell (cell); - check_cell_similarity(cell); + this->check_cell_similarity(cell); // set new cell. auto_ptr will take // care that old object gets @@ -3508,7 +3508,7 @@ FEValues::reinit (const typename MGDoFHandler::cell_ // typename FEValuesBase::ExcFEDontMatch()); this->maybe_invalidate_previous_present_cell (cell); - check_cell_similarity(cell); + this->check_cell_similarity(cell); // set new cell. auto_ptr will take // care that old object gets @@ -3535,7 +3535,7 @@ void FEValues::reinit (const typename Triangulation: // no FE in this cell, so no assertion // necessary here this->maybe_invalidate_previous_present_cell (cell); - check_cell_similarity(cell); + this->check_cell_similarity(cell); // set new cell. auto_ptr will take // care that old object gets -- 2.39.5