From: hartmann Date: Thu, 7 Feb 2008 09:30:57 +0000 (+0000) Subject: Make it compile with gcc3.3.4 by avoiding compiler error: type specifier omitted... X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0737554234b54bd9a6fd5cbc1ce64ae3675c4cf0;p=dealii-svn.git Make it compile with gcc3.3.4 by avoiding compiler error: type specifier omitted for parameter map_degree git-svn-id: https://svn.dealii.org/trunk@15721 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/deal.II/source/fe/mapping_q_eulerian.cc b/deal.II/deal.II/source/fe/mapping_q_eulerian.cc index 2177ab58ba..35e2901cd7 100644 --- a/deal.II/deal.II/source/fe/mapping_q_eulerian.cc +++ b/deal.II/deal.II/source/fe/mapping_q_eulerian.cc @@ -58,8 +58,8 @@ SupportQuadrature (const unsigned int map_degree) // on the unit cell in lexicographic order. // for this purpose we can use an interated // trapezoidal quadrature rule. - - QIterated q_iterated(QTrapez<1>(),map_degree); + QTrapez<1> q1d; + QIterated q_iterated(q1d,map_degree); const unsigned int n_q_points = q_iterated.n_quadrature_points; // we then need to define a renumbering