From a703132d29df779aab297e48d7b5ee65d2009c38 Mon Sep 17 00:00:00 2001 From: bangerth Date: Thu, 2 Jun 2011 21:55:09 +0000 Subject: [PATCH] Ouch. Fix all those accidental failures :-( git-svn-id: https://svn.dealii.org/trunk@23775 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/include/deal.II/fe/fe_values.h | 3 ++- deal.II/source/fe/fe_values.cc | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/deal.II/include/deal.II/fe/fe_values.h b/deal.II/include/deal.II/fe/fe_values.h index aed910f276..a519bb86ef 100644 --- a/deal.II/include/deal.II/fe/fe_values.h +++ b/deal.II/include/deal.II/fe/fe_values.h @@ -3045,7 +3045,8 @@ class FEValuesBase : protected FEValuesData, * tria_listener connected to the triangulation to which we will set * present_cell right after calling this function. */ - void maybe_invalidate_previous_present_cell (const typename Triangulation::active_cell_iterator &cell); + void + maybe_invalidate_previous_present_cell (const typename Triangulation::cell_iterator &cell); /** * Storage for the mapping object. diff --git a/deal.II/source/fe/fe_values.cc b/deal.II/source/fe/fe_values.cc index 2f8a686458..6b0860fe18 100644 --- a/deal.II/source/fe/fe_values.cc +++ b/deal.II/source/fe/fe_values.cc @@ -3253,7 +3253,7 @@ FEValuesBase< dim, spacedim >::invalidate_present_cell () template void FEValuesBase< dim, spacedim >:: -maybe_invalidate_previous_present_cell (const typename Triangulation::active_cell_iterator &cell) +maybe_invalidate_previous_present_cell (const typename Triangulation::cell_iterator &cell) { if (present_cell.get() != 0) { -- 2.39.5