From bca1ad31ea56bf83f4a0a4dccefc5d89c3002316 Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Mon, 18 Sep 2023 17:51:56 -0600 Subject: [PATCH] Simplify code slightly. --- include/deal.II/lac/solver_gmres.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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, -- 2.39.5