From 2eeffc767c825b3425e2dc23f6314389ed64fbe4 Mon Sep 17 00:00:00 2001 From: Ralf Hartmann Date: Thu, 24 Jun 2004 09:38:11 +0000 Subject: [PATCH] Remove const from cell_iterator returned by value. git-svn-id: https://svn.dealii.org/trunk@9467 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/deal.II/include/fe/fe_values.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/deal.II/deal.II/include/fe/fe_values.h b/deal.II/deal.II/include/fe/fe_values.h index 4296578cc3..0b1968b28c 100644 --- a/deal.II/deal.II/include/fe/fe_values.h +++ b/deal.II/deal.II/include/fe/fe_values.h @@ -827,7 +827,7 @@ class FEValuesBase : protected FEValuesData * Constant reference to the * current cell */ - const typename Triangulation::cell_iterator get_cell () const; + typename Triangulation::cell_iterator get_cell () const; /** * Determine an estimate for the @@ -1551,7 +1551,7 @@ FEValuesBase::get_mapping () const template inline -const typename Triangulation::cell_iterator +typename Triangulation::cell_iterator FEValuesBase::get_cell () const { return present_cell; -- 2.39.5