From: wolf Date: Wed, 15 Nov 2000 18:41:10 +0000 (+0000) Subject: Add some forgotten `typename' keywords. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e6f64a0c321f2df862ae551e973b5e05ec9b1be2;p=dealii-svn.git Add some forgotten `typename' keywords. git-svn-id: https://svn.dealii.org/trunk@3494 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 6837bc0cd3..212381bea2 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 - DoFHandler::cell_iterator neighbor = cell->neighbor(n); + typename DoFHandler::cell_iterator neighbor = cell->neighbor(n); if (neighbor.state() == valid) while (neighbor->has_children()) neighbor = neighbor->child(n==0 ? 1 : 0); @@ -660,7 +660,7 @@ integrate_over_regular_face (Data &data, FEFaceValues &fe_face_values_cell, FEFaceValues &fe_face_values_neighbor) { - const DoFHandler::face_iterator face = cell->face(face_no); + const typename DoFHandler::face_iterator face = cell->face(face_no); const unsigned int n_q_points = data.quadrature.n_quadrature_points, n_components = data.dof_handler.get_fe().n_components(), n_solution_vectors = data.n_solution_vectors; @@ -824,7 +824,7 @@ integrate_over_irregular_face (Data &data, FEFaceValues &fe_face_values, FESubfaceValues &fe_subface_values) { - const DoFHandler::cell_iterator neighbor = cell->neighbor(face_no); + const typename DoFHandler::cell_iterator neighbor = cell->neighbor(face_no); const unsigned int n_q_points = data.quadrature.n_quadrature_points, n_components = data.dof_handler.get_fe().n_components(), n_solution_vectors = data.n_solution_vectors; @@ -976,7 +976,7 @@ integrate_over_irregular_face (Data &data, // subfaces and store them with the // mother face vector sum (n_solution_vectors, 0); - DoFHandler::face_iterator face = cell->face(face_no); + typename DoFHandler::face_iterator face = cell->face(face_no); for (unsigned int subface_no=0; subface_no::subfaces_per_face; ++subface_no) {