From: Timo Heister Date: Thu, 9 Jan 2014 19:21:22 +0000 (+0000) Subject: remove typename that shouldn't be there X-Git-Tag: v8.2.0-rc1~1052 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3a3c477f8c09c28687516a9091e20a57d4bd395f;p=dealii.git remove typename that shouldn't be there git-svn-id: https://svn.dealii.org/trunk@32187 0785d39b-7218-0410-832d-ea1e28bc413d --- 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);