From: hartmann Date: Thu, 24 Jun 2004 09:38:11 +0000 (+0000) Subject: Remove const from cell_iterator returned by value. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6c140ae1b2a9ccc7fe58a5fce8adcd109deff18f;p=dealii-svn.git Remove const from cell_iterator returned by value. git-svn-id: https://svn.dealii.org/trunk@9467 0785d39b-7218-0410-832d-ea1e28bc413d --- 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;