From 4c13225ba188161d8660921a8a3fbae4d0f28736 Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Wed, 23 Jan 2019 21:42:38 -0700 Subject: [PATCH] Make the internals of class Vector 'private:'. --- include/deal.II/lac/vector.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; -- 2.39.5