From e8767dbe53fbde1337c2ac39d7bc46ea7ba29852 Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Thu, 24 Jan 2019 09:43:25 -0700 Subject: [PATCH] Remove a duplicate 'private:' marker and move a function declaration. --- include/deal.II/lac/vector.h | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/include/deal.II/lac/vector.h b/include/deal.II/lac/vector.h index 248f992ea1..7e198889c5 100644 --- a/include/deal.II/lac/vector.h +++ b/include/deal.II/lac/vector.h @@ -1023,6 +1023,14 @@ private: mutable std::shared_ptr thread_loop_partitioner; + /** + * Allocate and align @p values along 64-byte boundaries. The size of the + * allocated memory is determined by @p max_vec_size . Copy first + * @p copy_n_el from the old values. + */ + void + allocate(const size_type copy_n_el = 0); + /** * Make all other vector types friends. */ @@ -1034,15 +1042,6 @@ private: */ template friend class LAPACKFullMatrix; - -private: - /** - * Allocate and align @p values along 64-byte boundaries. The size of the - * allocated memory is determined by @p max_vec_size . Copy first - * @p copy_n_el from the old values. - */ - void - allocate(const size_type copy_n_el = 0); }; /*@}*/ -- 2.39.5