From: Wolfgang Bangerth Date: Thu, 24 Jan 2019 16:43:25 +0000 (-0700) Subject: Remove a duplicate 'private:' marker and move a function declaration. X-Git-Tag: v9.1.0-rc1~407^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F7632%2Fhead;p=dealii.git Remove a duplicate 'private:' marker and move a function declaration. --- 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); }; /*@}*/