From c20c4f16a5ade6ff40f62ccefa3d484e2255a611 Mon Sep 17 00:00:00 2001 From: wolf Date: Wed, 15 Nov 2000 19:55:06 +0000 Subject: [PATCH] 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 --- deal.II/deal.II/source/numerics/error_estimator.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); -- 2.39.5