From 2795dd734f396bb62b045376437d45ca70b8398e Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Fri, 23 Jan 2015 18:59:28 -0600 Subject: [PATCH] Remove deprecated version of parallel::distributed::Vector::compress_finish(). --- doc/news/changes.h | 2 ++ include/deal.II/lac/parallel_vector.h | 18 ------------------ 2 files changed, 2 insertions(+), 18 deletions(-) diff --git a/doc/news/changes.h b/doc/news/changes.h index 50da9e86b7..a3f8eddf08 100644 --- a/doc/news/changes.h +++ b/doc/news/changes.h @@ -160,6 +160,8 @@ inconvenience this causes. - BlockMatrixArray and BlockTrianglePreconditioner functions that take an explicit VectorMemory object. - The SolverSelector constructor that takes a VectorMemory argument. + - The version of parallel::distributed::Vector::compress_finish + function that takes a boolean.
This release also removes the deprecated class MGDoFHandler. The functionality of this class had previously been incorporated into diff --git a/include/deal.II/lac/parallel_vector.h b/include/deal.II/lac/parallel_vector.h index a657fa6e5f..dcdc523aa0 100644 --- a/include/deal.II/lac/parallel_vector.h +++ b/include/deal.II/lac/parallel_vector.h @@ -452,11 +452,6 @@ namespace parallel */ void compress_finish (::dealii::VectorOperation::values operation); - /** - * @deprecated: use compress_finish(VectorOperation::values) instead. - */ - void compress_finish (const bool add_ghost_data = true) DEAL_II_DEPRECATED; - /** * Initiates communication for the @p update_ghost_values() function * with non-blocking communication. This function does not wait for the @@ -1342,19 +1337,6 @@ namespace parallel - template - inline - void - Vector::compress_finish (const bool add_value) - { - if (add_value) - compress_finish(VectorOperation::add); - else - compress_finish(VectorOperation::insert); - } - - - template inline void -- 2.39.5