From: Wolfgang Bangerth Date: Tue, 29 Aug 2006 21:28:03 +0000 (+0000) Subject: Work around an old bug in gcc. X-Git-Tag: v8.0.0~11194 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=eb8ed1412cd945631a11553afbee4b7a6c974580;p=dealii.git Work around an old bug in gcc. git-svn-id: https://svn.dealii.org/trunk@13778 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/tests/deal.II/interpolate_q_system_01.cc b/tests/deal.II/interpolate_q_system_01.cc index 35d5a53d94..0fd23ca079 100644 --- a/tests/deal.II/interpolate_q_system_01.cc +++ b/tests/deal.II/interpolate_q_system_01.cc @@ -71,8 +71,10 @@ void test () for (unsigned int p=1; p<6-dim; ++p) { - FESystem fe(FE_Q(p), 2, - FE_Q(p+1), 1); + FE_Q fe_1(p); + FE_Q fe_2(p+1); + FESystem fe(fe_1, 2, + fe_2, 1); DoFHandler dof_handler(triangulation); dof_handler.distribute_dofs (fe);