From 42beb9ed3402a2941f7f890a2803bee30bb889b9 Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Fri, 27 Feb 2015 13:56:11 -0600 Subject: [PATCH] Remove deprecated function BlockMatrixBase::compress() without argument. --- include/deal.II/lac/block_matrix_base.h | 15 +-------------- 1 file changed, 1 insertion(+), 14 deletions(-) diff --git a/include/deal.II/lac/block_matrix_base.h b/include/deal.II/lac/block_matrix_base.h index cb29ab1136..a0fbff395e 100644 --- a/include/deal.II/lac/block_matrix_base.h +++ b/include/deal.II/lac/block_matrix_base.h @@ -1,6 +1,6 @@ // --------------------------------------------------------------------- // -// Copyright (C) 2004 - 2014 by the deal.II authors +// Copyright (C) 2004 - 2015 by the deal.II authors // // This file is part of the deal.II library. // @@ -628,11 +628,6 @@ public: */ void compress (::dealii::VectorOperation::values operation); - /** - * @deprecated: use compress() with VectorOperation instead. - */ - void compress () DEAL_II_DEPRECATED; - /** * Multiply the entire matrix by a fixed factor. */ @@ -2146,14 +2141,6 @@ BlockMatrixBase::compress (::dealii::VectorOperation::values operati block(r,c).compress (operation); } -template -inline -void -BlockMatrixBase::compress () -{ - compress(::dealii::VectorOperation::unknown); -} - template -- 2.39.5