From 1d6c5ae7f31f0b396c0f61cef19bd7b3bc31f486 Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Sat, 18 Aug 2007 02:34:17 +0000 Subject: [PATCH] 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 --- deal.II/lac/include/lac/block_sparsity_pattern.h | 14 ++++++++++++++ 1 file changed, 14 insertions(+) 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; }; -- 2.39.5