From: David Wells Date: Sun, 6 Nov 2016 13:47:17 +0000 (-0500) Subject: Clarify the signature of a copy constructor. X-Git-Tag: v8.5.0-rc1~448^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9961cec61d2782e4bfb4ff82d583cc7eb4d88e19;p=dealii.git Clarify the signature of a copy constructor. PVS studio claims that we do not implement a copy constructor for this iterator. It is likely that (unnecessarily) including the template arguments here confused PVS studio, so remove them. --- diff --git a/include/deal.II/lac/block_vector_base.h b/include/deal.II/lac/block_vector_base.h index 7ebd90efbe..69506a8ef0 100644 --- a/include/deal.II/lac/block_vector_base.h +++ b/include/deal.II/lac/block_vector_base.h @@ -277,9 +277,9 @@ namespace internal /** - * Copy constructor. + * Copy constructor from an iterator with the same constness. */ - Iterator (const Iterator &c); + Iterator (const Iterator &c); private: /**