From: Marc Fehling Date: Thu, 1 Jul 2021 18:43:24 +0000 (-0600) Subject: step-79: Avoid using constructor which are incompatible to Intel 18. X-Git-Tag: v9.4.0-rc1~1175^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F12533%2Fhead;p=dealii.git step-79: Avoid using constructor which are incompatible to Intel 18. --- diff --git a/examples/step-79/step-79.cc b/examples/step-79/step-79.cc index 4a2f50236e..19397f9710 100644 --- a/examples/step-79/step-79.cc +++ b/examples/step-79/step-79.cc @@ -279,11 +279,11 @@ namespace SAND SANDTopOpt::SANDTopOpt() : fe(FE_DGQ(0), 1, - (FESystem(FE_Q(1) ^ dim)), + FESystem(FE_Q(1), dim), 1, FE_DGQ(0), 1, - (FESystem(FE_Q(1) ^ dim)), + FESystem(FE_Q(1), dim), 1, FE_DGQ(0), 5)