From: Wolfgang Bangerth Date: Thu, 2 Jun 2011 21:55:09 +0000 (+0000) Subject: Ouch. Fix all those accidental failures :-( X-Git-Tag: v8.0.0~3990 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2a8405d5ad0f3c11f4b0015f2db77e8cc8751905;p=dealii.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) {