From fc5c591fc3305a04b2c5759953c44b036941d675 Mon Sep 17 00:00:00 2001 From: kanschat Date: Tue, 29 Aug 2006 21:38:53 +0000 Subject: [PATCH] make this compile with gcc 3.3.5 git-svn-id: https://svn.dealii.org/trunk@13779 0785d39b-7218-0410-832d-ea1e28bc413d --- tests/deal.II/interpolate_q_system_02.cc | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/tests/deal.II/interpolate_q_system_02.cc b/tests/deal.II/interpolate_q_system_02.cc index d89dcf6ea3..236d44616b 100644 --- a/tests/deal.II/interpolate_q_system_02.cc +++ b/tests/deal.II/interpolate_q_system_02.cc @@ -76,9 +76,10 @@ void test () for (unsigned int p=1; p<6-dim; ++p) { - FESystem fe(FE_Q(p), 2, - FE_Q(p+1), 1); - DoFHandler dof_handler(triangulation); + FE_Q fe1(p); + FE_Q fe2(p+1); + FESystem fe(fe1, 2, fe2 , 1); + DoFHandler dof_handler(triangulation); dof_handler.distribute_dofs (fe); ConstraintMatrix constraints; -- 2.39.5