From: Wolfgang Bangerth Date: Thu, 24 Jan 2019 04:42:38 +0000 (-0700) Subject: Make the internals of class Vector 'private:'. X-Git-Tag: v9.1.0-rc1~407^2~1 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4c13225ba188161d8660921a8a3fbae4d0f28736;p=dealii.git Make the internals of class Vector 'private:'. --- diff --git a/include/deal.II/lac/vector.h b/include/deal.II/lac/vector.h index 085c655f27..248f992ea1 100644 --- a/include/deal.II/lac/vector.h +++ b/include/deal.II/lac/vector.h @@ -992,9 +992,9 @@ public: memory_consumption() const; //@} -protected: +private: /** - * Dimension. Actual number of components contained in the vector. Get this + * Dimension. Actual number of components contained in the vector. Get this * number by calling size(). */ size_type vec_size;