From: bangerth Date: Sat, 18 Aug 2007 02:34:17 +0000 (+0000) Subject: Undo Ralf's last change to this file since it breaks existing code doing csp.reinit... X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d0536b3cacc9ecc5a44bea306650867b69b23c38;p=dealii-svn.git Undo Ralf's last change to this file since it breaks existing code doing csp.reinit(3,3). git-svn-id: https://svn.dealii.org/trunk@14974 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/lac/include/lac/block_sparsity_pattern.h b/deal.II/lac/include/lac/block_sparsity_pattern.h index f8b1a4d9c5..5da1bc75e2 100644 --- a/deal.II/lac/include/lac/block_sparsity_pattern.h +++ b/deal.II/lac/include/lac/block_sparsity_pattern.h @@ -617,6 +617,13 @@ class BlockCompressedSparsityPattern : public BlockSparsityPatternBase &row_block_sizes, const std::vector< unsigned int > &col_block_sizes); + + /** + * Allow the use of the reinit + * functions of the base class as + * well. + */ + BlockSparsityPatternBase::reinit; }; @@ -702,6 +709,13 @@ class BlockCompressedSetSparsityPattern : public BlockSparsityPatternBase &row_block_sizes, const std::vector< unsigned int > &col_block_sizes); + + /** + * Allow the use of the reinit + * functions of the base class as + * well. + */ + BlockSparsityPatternBase::reinit; };