From 18945456592633c38f75e4165d36fb6e8d1fbfca Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Fri, 25 Mar 2005 16:10:25 +0000 Subject: [PATCH] Undo last checkin, since it makes other compilers fail. git-svn-id: https://svn.dealii.org/trunk@10242 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/lac/include/lac/block_matrix_array.h | 26 +++++++++++++++++--- 1 file changed, 22 insertions(+), 4 deletions(-) diff --git a/deal.II/lac/include/lac/block_matrix_array.h b/deal.II/lac/include/lac/block_matrix_array.h index 8696e15979..6f9fd4211d 100644 --- a/deal.II/lac/include/lac/block_matrix_array.h +++ b/deal.II/lac/include/lac/block_matrix_array.h @@ -432,11 +432,14 @@ class BlockTrianglePrecondition void reinit(const unsigned int n_block_rows); /** - * Add a new block. Calls - * BlockMatrixArray::enter(). + * Add a new block. Calls BlockMatrixArray::enter(). */ - using BlockMatrixArray::enter; - + template + void enter (const MATRIX &matrix, + const unsigned int row, + const unsigned int col, + const double prefix = 1., + const bool transpose = false); /** * Preconditioning. */ @@ -633,6 +636,21 @@ BlockMatrixArray::print_latex (STREAM& out) const } +template +template +inline +void +BlockTrianglePrecondition::enter ( + const MATRIX &matrix, + const unsigned int row, + const unsigned int col, + const double prefix, + const bool transpose) +{ + BlockMatrixArray::enter(matrix, row, col, prefix, transpose); +} + + ///@endif #endif -- 2.39.5