From: bangerth Date: Fri, 12 Nov 2010 19:19:27 +0000 (+0000) Subject: Fix type of iterator. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=cb4a7533592957a7d9a2e6047cbeaa96c578e3d6;p=dealii-svn.git Fix type of iterator. git-svn-id: https://svn.dealii.org/trunk@22708 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/tests/deal.II/vertex_as_face_05.cc b/tests/deal.II/vertex_as_face_05.cc index 04bcf3c573..2d198cbd79 100644 --- a/tests/deal.II/vertex_as_face_05.cc +++ b/tests/deal.II/vertex_as_face_05.cc @@ -47,7 +47,7 @@ void test () tria.refine_global (2); dof_handler.distribute_dofs (fe); - for (typename Triangulation<1,spacedim>::active_cell_iterator + for (typename DoFHandler<1,spacedim>::active_cell_iterator cell = dof_handler.begin_active(); cell != dof_handler.end(); ++cell) {