From 3a3c477f8c09c28687516a9091e20a57d4bd395f Mon Sep 17 00:00:00 2001 From: Timo Heister Date: Thu, 9 Jan 2014 19:21:22 +0000 Subject: [PATCH] remove typename that shouldn't be there git-svn-id: https://svn.dealii.org/trunk@32187 0785d39b-7218-0410-832d-ea1e28bc413d --- tests/hp/do_function_derivatives_01.cc | 2 +- tests/hp/do_function_hessians_01.cc | 2 +- tests/hp/do_function_laplacians_01.cc | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/hp/do_function_derivatives_01.cc b/tests/hp/do_function_derivatives_01.cc index 8c324d71a5..2e52bd2833 100644 --- a/tests/hp/do_function_derivatives_01.cc +++ b/tests/hp/do_function_derivatives_01.cc @@ -101,7 +101,7 @@ int main() q.push_back(QMidpoint<2>()); q.push_back(QMidpoint<2>()); hp::FEValues<2> x_fe_values (fe_collection, q, update_gradients); - for (typename hp::DoFHandler<2>::active_cell_iterator cell = dof_handler.begin_active(); + for (hp::DoFHandler<2>::active_cell_iterator cell = dof_handler.begin_active(); cell != dof_handler.end(); ++cell) { x_fe_values.reinit (cell); diff --git a/tests/hp/do_function_hessians_01.cc b/tests/hp/do_function_hessians_01.cc index c2022df1a4..7a17fe0def 100644 --- a/tests/hp/do_function_hessians_01.cc +++ b/tests/hp/do_function_hessians_01.cc @@ -101,7 +101,7 @@ int main() q.push_back(QMidpoint<2>()); q.push_back(QMidpoint<2>()); hp::FEValues<2> x_fe_values (fe_collection, q, update_hessians); - for (typename hp::DoFHandler<2>::active_cell_iterator cell = dof_handler.begin_active(); + for (hp::DoFHandler<2>::active_cell_iterator cell = dof_handler.begin_active(); cell != dof_handler.end(); ++cell) { x_fe_values.reinit (cell); diff --git a/tests/hp/do_function_laplacians_01.cc b/tests/hp/do_function_laplacians_01.cc index 3cd68e0644..ed9a931c41 100644 --- a/tests/hp/do_function_laplacians_01.cc +++ b/tests/hp/do_function_laplacians_01.cc @@ -101,7 +101,7 @@ int main() q.push_back(QMidpoint<2>()); q.push_back(QMidpoint<2>()); hp::FEValues<2> x_fe_values (fe_collection, q, update_hessians); - for (typename hp::DoFHandler<2>::active_cell_iterator cell = dof_handler.begin_active(); + for (hp::DoFHandler<2>::active_cell_iterator cell = dof_handler.begin_active(); cell != dof_handler.end(); ++cell) { x_fe_values.reinit (cell); -- 2.39.5