]> https://gitweb.dealii.org/ - dealii.git/commitdiff
Mark input arguments as 'const'.
authorWolfgang Bangerth <bangerth@colostate.edu>
Thu, 20 Apr 2023 00:53:16 +0000 (18:53 -0600)
committerWolfgang Bangerth <bangerth@colostate.edu>
Thu, 20 Apr 2023 00:53:16 +0000 (18:53 -0600)
tests/sundials/n_vector.cc

index 2c1891114523cbf74c1571973c243b4d73245f4e..4cb04da272c11e684654f2c012655558438bc26a 100644 (file)
@@ -77,13 +77,13 @@ namespace
    */
   template <typename VectorType>
   VectorType
-  create_test_vector(double value = 0.0);
+  create_test_vector(const double value = 0.0);
 
 
 
   template <>
   Vector<double>
-  create_test_vector(double value)
+  create_test_vector(const double value)
   {
     Vector<double> vector(3 /*size*/);
     vector = value;
@@ -94,7 +94,7 @@ namespace
 
   template <>
   BlockVector<double>
-  create_test_vector(double value)
+  create_test_vector(const double value)
   {
     const int           num_blocks = 2;
     const int           size_block = 3;
@@ -105,7 +105,7 @@ namespace
 
   template <>
   LinearAlgebra::distributed::Vector<double>
-  create_test_vector(double value)
+  create_test_vector(const double value)
   {
     IndexSet local_dofs = create_parallel_index_set();
     LinearAlgebra::distributed::Vector<double> vector(local_dofs,
@@ -116,7 +116,7 @@ namespace
 
   template <>
   LinearAlgebra::distributed::BlockVector<double>
-  create_test_vector(double value)
+  create_test_vector(const double value)
   {
     const unsigned n_processes =
       Utilities::MPI::n_mpi_processes(MPI_COMM_WORLD);
@@ -133,7 +133,7 @@ namespace
 
   template <>
   TrilinosWrappers::MPI::Vector
-  create_test_vector(double value)
+  create_test_vector(const double value)
   {
     IndexSet local_dofs = create_parallel_index_set();
 
@@ -144,7 +144,7 @@ namespace
 
   template <>
   TrilinosWrappers::MPI::BlockVector
-  create_test_vector(double value)
+  create_test_vector(const double value)
   {
     const unsigned n_processes =
       Utilities::MPI::n_mpi_processes(MPI_COMM_WORLD);
@@ -159,7 +159,7 @@ namespace
 
   template <>
   PETScWrappers::MPI::Vector
-  create_test_vector(double value)
+  create_test_vector(const double value)
   {
     IndexSet local_dofs = create_parallel_index_set();
 
@@ -170,7 +170,7 @@ namespace
 
   template <>
   PETScWrappers::MPI::BlockVector
-  create_test_vector(double value)
+  create_test_vector(const double value)
   {
     const unsigned n_processes =
       Utilities::MPI::n_mpi_processes(MPI_COMM_WORLD);

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.