]> https://gitweb.dealii.org/ - dealii.git/commitdiff
Omit 'const' for variables declared 'constexpr const'. 18302/head
authorWolfgang Bangerth <bangerth@colostate.edu>
Sat, 29 Mar 2025 14:47:23 +0000 (08:47 -0600)
committerWolfgang Bangerth <bangerth@colostate.edu>
Sat, 29 Mar 2025 14:47:23 +0000 (08:47 -0600)
include/deal.II/base/patterns.h
include/deal.II/grid/reference_cell.h
include/deal.II/matrix_free/portable_matrix_free.h
include/deal.II/meshworker/copy_data.h

index 84b5f9d4efd1b7f701cccbc7468777a4f441288e..cacab306da715a1b4235766eda53ac15ded3bd32 100644 (file)
@@ -1632,14 +1632,14 @@ namespace Patterns
     template <typename T>
     struct is_list_compatible
     {
-      static constexpr const bool value =
+      static constexpr bool value =
         internal::is_list_compatible<std::decay_t<T>>::value;
     };
 
     template <typename T>
     struct is_map_compatible
     {
-      static constexpr const bool value =
+      static constexpr bool value =
         internal::is_map_compatible<std::decay_t<T>>::value;
     };
 
index bffec5089cfded8f0cf87d4c5a227d30b399c01f..046c926870740788d6e55d71f2d2f2be92987b81 100644 (file)
@@ -1216,25 +1216,19 @@ namespace internal
  */
 namespace ReferenceCells
 {
-  constexpr const ReferenceCell Vertex =
-    internal::make_reference_cell_from_int(0);
-  constexpr const ReferenceCell Line =
-    internal::make_reference_cell_from_int(1);
-  constexpr const ReferenceCell Triangle =
-    internal::make_reference_cell_from_int(2);
-  constexpr const ReferenceCell Quadrilateral =
+  constexpr ReferenceCell Vertex   = internal::make_reference_cell_from_int(0);
+  constexpr ReferenceCell Line     = internal::make_reference_cell_from_int(1);
+  constexpr ReferenceCell Triangle = internal::make_reference_cell_from_int(2);
+  constexpr ReferenceCell Quadrilateral =
     internal::make_reference_cell_from_int(3);
-  constexpr const ReferenceCell Tetrahedron =
+  constexpr ReferenceCell Tetrahedron =
     internal::make_reference_cell_from_int(4);
-  constexpr const ReferenceCell Pyramid =
-    internal::make_reference_cell_from_int(5);
-  constexpr const ReferenceCell Wedge =
-    internal::make_reference_cell_from_int(6);
-  constexpr const ReferenceCell Hexahedron =
+  constexpr ReferenceCell Pyramid = internal::make_reference_cell_from_int(5);
+  constexpr ReferenceCell Wedge   = internal::make_reference_cell_from_int(6);
+  constexpr ReferenceCell Hexahedron =
     internal::make_reference_cell_from_int(7);
-  constexpr const ReferenceCell Invalid =
-    internal::make_reference_cell_from_int(
-      std::numeric_limits<std::uint8_t>::max());
+  constexpr ReferenceCell Invalid = internal::make_reference_cell_from_int(
+    std::numeric_limits<std::uint8_t>::max());
 
   /**
    * Return the correct simplex reference cell type for the given dimension
index 85ef6c9f402e297b2d24ba5f579c41421e3fbf86..c5742218883099989291b8c782c4d8c903bb24ec 100644 (file)
@@ -73,7 +73,7 @@ namespace Portable
    * of blocks in a BlockVector and the number of FEEvaluation objects that can
    * be active in a single cell_loop().
    */
-  inline constexpr const unsigned int n_max_dof_handlers = 5;
+  inline constexpr unsigned int n_max_dof_handlers = 5;
 
   /**
    * Type for source and destination vectors in device functions like
index 64ded382edfd49aca153021c2d19b5380761a585..4513cb6ea3df3fee373485dbc716a17b7afb8002 100644 (file)
@@ -223,8 +223,7 @@ namespace MeshWorker
   {
     // We permit different numbers of matrices, vectors and DoF index vectors.
     // So we have to be a bit permissive here.
-    constexpr const int max_index =
-      std::max({n_matrices, n_vectors, n_dof_indices});
+    constexpr int max_index = std::max({n_matrices, n_vectors, n_dof_indices});
     (void)max_index;
     Assert(index < max_index, ExcIndexRange(index, 0, max_index));
 

In the beginning the Universe was created. This has made a lot of people very angry and has been widely regarded as a bad move.

Douglas Adams


Typeset in Trocchi and Trocchi Bold Sans Serif.