From: Daniel Arndt Date: Fri, 1 Sep 2017 09:21:49 +0000 (+0200) Subject: Explicitly specify template arguments in fe/fe_system_generalized_support_points X-Git-Tag: v9.0.0-rc1~1136^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F5006%2Fhead;p=dealii.git Explicitly specify template arguments in fe/fe_system_generalized_support_points --- diff --git a/tests/fe/fe_system_generalized_support_points.cc b/tests/fe/fe_system_generalized_support_points.cc index 447bdd6d03..11f0d1e577 100644 --- a/tests/fe/fe_system_generalized_support_points.cc +++ b/tests/fe/fe_system_generalized_support_points.cc @@ -44,15 +44,15 @@ void test() print(FE_Q(1)); print(FE_RaviartThomas(0)); print(FE_Nedelec(0)); - print(FESystem(FE_RaviartThomas(0), 3, FE_Nedelec(0), 3)); - print(FESystem(FESystem(FE_RaviartThomas(0), 3, FE_Nedelec(0), 3), 2, FE_Q(1), 3, FE_Q(1), 3)); + print(FESystem(FE_RaviartThomas(0), 3, FE_Nedelec(0), 3)); + print(FESystem(FESystem(FE_RaviartThomas(0), 3, FE_Nedelec(0), 3), 2, FE_Q(1), 3, FE_Q(1), 3)); deallog << "dim " << dim << " higher order" << std::endl; print(FE_Q(2)); print(FE_RaviartThomas(1)); print(FE_Nedelec(1)); - print(FESystem(FE_RaviartThomas(1), 3, FE_Nedelec(1), 3)); - print(FESystem(FESystem(FE_RaviartThomas(1), 3, FE_Nedelec(1), 3), 2, FE_Q(2), 3, FE_Q(1), 3)); + print(FESystem(FE_RaviartThomas(1), 3, FE_Nedelec(1), 3)); + print(FESystem(FESystem(FE_RaviartThomas(1), 3, FE_Nedelec(1), 3), 2, FE_Q(2), 3, FE_Q(1), 3)); } int main ()