From: Wolfgang Bangerth Date: Tue, 11 Mar 2025 00:37:18 +0000 (-0600) Subject: Use _v variables instead of ...::value. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F18225%2Fhead;p=dealii.git Use _v variables instead of ...::value. --- 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.