From 0a5c5b33c121400fd2787b13440161fb2d81117c Mon Sep 17 00:00:00 2001 From: bangerth Date: Fri, 18 Feb 2011 22:45:12 +0000 Subject: [PATCH] Fix code. git-svn-id: https://svn.dealii.org/trunk@23404 0785d39b-7218-0410-832d-ea1e28bc413d --- tests/codim_one/boundary_indicator_01.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/codim_one/boundary_indicator_01.cc b/tests/codim_one/boundary_indicator_01.cc index 341869788b..e4a9b2b366 100644 --- a/tests/codim_one/boundary_indicator_01.cc +++ b/tests/codim_one/boundary_indicator_01.cc @@ -63,7 +63,7 @@ int main () // exclude one of the 6 faces // from the surface mesh // extraction - for (typename Triangulation::active_cell_iterator + for (Triangulation::active_cell_iterator cell = volume_mesh.begin_active(); cell != volume_mesh.end(); ++cell) { @@ -99,7 +99,7 @@ int main () // of the mesh to 1 to force // straight line refinement, then // refine - for (typename Triangulation::active_cell_iterator + for (Triangulation::active_cell_iterator cell = boundary_mesh.begin_active(); cell != boundary_mesh.end(); ++cell) for (unsigned int f=0; f::faces_per_cell; ++f) -- 2.39.5