From: Wolfgang Bangerth Date: Wed, 15 Nov 2000 19:55:06 +0000 (+0000) Subject: Remove one `typename' again, as it was at the wrong place. X-Git-Tag: v8.0.0~19937 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b444a0f1cf3811c579a9f4489bb1303f605264fd;p=dealii.git Remove one `typename' again, as it was at the wrong place. git-svn-id: https://svn.dealii.org/trunk@3495 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/deal.II/source/numerics/error_estimator.cc b/deal.II/deal.II/source/numerics/error_estimator.cc index 212381bea2..76b97e6685 100644 --- a/deal.II/deal.II/source/numerics/error_estimator.cc +++ b/deal.II/deal.II/source/numerics/error_estimator.cc @@ -262,7 +262,7 @@ void KellyErrorEstimator<1>::estimate (const DoFHandler<1> &dof_ for (unsigned int n=0; n<2; ++n) { // find right active neighbor - typename DoFHandler::cell_iterator neighbor = cell->neighbor(n); + DoFHandler::cell_iterator neighbor = cell->neighbor(n); if (neighbor.state() == valid) while (neighbor->has_children()) neighbor = neighbor->child(n==0 ? 1 : 0);