From: Martin Kronbichler Date: Wed, 25 May 2022 11:22:59 +0000 (+0200) Subject: Utilities: Fix compile error on certain compilers X-Git-Tag: v9.4.0-rc1~153^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F13813%2Fhead;p=dealii.git Utilities: Fix compile error on certain compilers --- diff --git a/include/deal.II/base/utilities.h b/include/deal.II/base/utilities.h index 1c29fcbdad..ad245e6582 100644 --- a/include/deal.II/base/utilities.h +++ b/include/deal.II/base/utilities.h @@ -1474,7 +1474,7 @@ namespace Utilities return object; } - return {}; + return T(); }