From: David Wells Date: Mon, 13 May 2019 17:24:58 +0000 (-0400) Subject: cppcheck: explicitly call a virtual function in a ctor. X-Git-Tag: v9.1.0-rc1~18^2~3 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2520dd40cb33b1af5adb426ba2769ef685a4ebf9;p=dealii.git cppcheck: explicitly call a virtual function in a ctor. --- diff --git a/include/deal.II/base/aligned_vector.h b/include/deal.II/base/aligned_vector.h index 2a17623ec4..f18c5ba80f 100644 --- a/include/deal.II/base/aligned_vector.h +++ b/include/deal.II/base/aligned_vector.h @@ -398,7 +398,7 @@ namespace internal ExcInternalError()); const std::size_t size = source_end - source_begin; if (size < minimum_parallel_grain_size) - apply_to_subrange(0, size); + AlignedVectorCopy::apply_to_subrange(0, size); else apply_parallel(0, size, minimum_parallel_grain_size); }