From: Wolfgang Bangerth Date: Fri, 27 Feb 2015 19:56:11 +0000 (-0600) Subject: Remove deprecated function BlockMatrixBase::compress() without argument. X-Git-Tag: v8.3.0-rc1~380^2~10 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=42beb9ed3402a2941f7f890a2803bee30bb889b9;p=dealii.git Remove deprecated function BlockMatrixBase::compress() without argument. --- 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