From: Wolfgang 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-Tag: v8.0.0~10071 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1d6c5ae7f31f0b396c0f61cef19bd7b3bc31f486;p=dealii.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; };