From e06ad1a0ebeec7b8e44a88493c6ade782868fbb9 Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Mon, 10 Mar 2025 18:37:18 -0600 Subject: [PATCH] Use _v variables instead of ...::value. --- include/deal.II/hp/fe_collection.h | 8 ++++---- include/deal.II/hp/mapping_collection.h | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/include/deal.II/hp/fe_collection.h b/include/deal.II/hp/fe_collection.h index 03dae2f2b2..a43bbe78b4 100644 --- a/include/deal.II/hp/fe_collection.h +++ b/include/deal.II/hp/fe_collection.h @@ -151,11 +151,11 @@ namespace hp * clang-tidy). */ FECollection(FECollection &&) noexcept( - std::is_nothrow_move_constructible< - std::vector>>>::value - &&std::is_nothrow_move_constructible>>> + &&std::is_nothrow_move_constructible_v &, - const unsigned int)>>::value) = default; + const unsigned int)>>) = default; /** * Move assignment operator. diff --git a/include/deal.II/hp/mapping_collection.h b/include/deal.II/hp/mapping_collection.h index c88fd9f1c6..af4acc9906 100644 --- a/include/deal.II/hp/mapping_collection.h +++ b/include/deal.II/hp/mapping_collection.h @@ -95,11 +95,11 @@ namespace hp * clang-tidy). */ MappingCollection(MappingCollection &&) noexcept( - std::is_nothrow_move_constructible< - std::vector>>>::value - &&std::is_nothrow_move_constructible>>> + &&std::is_nothrow_move_constructible_v &, - const unsigned int)>>::value) = default; + const unsigned int)>>) = default; /** * Move assignment operator. -- 2.39.5