]> https://gitweb.dealii.org/ - dealii.git/commitdiff
cppcheck: make virtual function calls in ctors explicit.
authorDavid Wells <drwells@email.unc.edu>
Sat, 9 May 2020 19:27:49 +0000 (15:27 -0400)
committerDavid Wells <drwells@email.unc.edu>
Sat, 9 May 2020 23:24:48 +0000 (19:24 -0400)
include/deal.II/base/aligned_vector.h
include/deal.II/lac/precondition.h

index 08d271b6fd09fa6727680ec4a8491c10286a4c80..e83e1a7f95f4c6c62cecc40435e43a859917bd9a 100644 (file)
@@ -477,7 +477,7 @@ namespace internal
              ExcInternalError());
       const std::size_t size = source_end - source_begin;
       if (size < minimum_parallel_grain_size)
-        apply_to_subrange(0, size);
+        AlignedVectorMove::apply_to_subrange(0, size);
       else
         apply_parallel(0, size, minimum_parallel_grain_size);
     }
@@ -566,7 +566,7 @@ namespace internal
             trivial_element = true;
         }
       if (size < minimum_parallel_grain_size)
-        apply_to_subrange(0, size);
+        AlignedVectorSet::apply_to_subrange(0, size);
       else
         apply_parallel(0, size, minimum_parallel_grain_size);
     }
@@ -649,7 +649,7 @@ namespace internal
       Assert(destination != nullptr, ExcInternalError());
 
       if (size < minimum_parallel_grain_size)
-        apply_to_subrange(0, size);
+        AlignedVectorDefaultInitialize::apply_to_subrange(0, size);
       else
         apply_parallel(0, size, minimum_parallel_grain_size);
     }
index b681f6e7f0990a39b9da7cfc98135ff77c653d3e..5f7a8308ba5834c9083c7780455a042fc52310c8 100644 (file)
@@ -1947,7 +1947,7 @@ namespace internal
         : updater(updater)
       {
         if (size < internal::VectorImplementation::minimum_parallel_grain_size)
-          apply_to_subrange(0, size);
+          VectorUpdatesRange::apply_to_subrange(0, size);
         else
           apply_parallel(
             0,

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.