From: Wolfgang Bangerth Date: Mon, 18 Sep 2023 23:51:56 +0000 (-0600) Subject: Simplify code slightly. X-Git-Tag: relicensing~490^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F16009%2Fhead;p=dealii.git Simplify code slightly. --- diff --git a/include/deal.II/lac/solver_gmres.h b/include/deal.II/lac/solver_gmres.h index a5cc5e8860..939be50522 100644 --- a/include/deal.II/lac/solver_gmres.h +++ b/include/deal.II/lac/solver_gmres.h @@ -734,7 +734,7 @@ namespace internal template struct is_dealii_compatible_distributed_vector< VectorType, - typename std::enable_if>::type> + std::enable_if_t>> { static constexpr bool value = std::is_same_v< VectorType, @@ -747,7 +747,7 @@ namespace internal template struct is_dealii_compatible_distributed_vector< VectorType, - typename std::enable_if>::type> + std::enable_if_t>> { static constexpr bool value = std::is_same_v< typename VectorType::BlockType,