From: bangerth Date: Thu, 2 Jun 2011 21:55:09 +0000 (+0000) Subject: Ouch. Fix all those accidental failures :-( X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a703132d29df779aab297e48d7b5ee65d2009c38;p=dealii-svn.git Ouch. Fix all those accidental failures :-( git-svn-id: https://svn.dealii.org/trunk@23775 0785d39b-7218-0410-832d-ea1e28bc413d --- 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) {