From 1513985f5ddca910d467514324a2fbe997f7eb0b Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Fri, 11 Jun 2004 14:48:38 +0000 Subject: [PATCH] Use a more modern way to achieve things. git-svn-id: https://svn.dealii.org/trunk@9421 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/lac/include/lac/petsc_block_sparse_matrix.h | 2 +- deal.II/lac/include/lac/petsc_parallel_block_sparse_matrix.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/deal.II/lac/include/lac/petsc_block_sparse_matrix.h b/deal.II/lac/include/lac/petsc_block_sparse_matrix.h index 5dbf1001c8..8b296e457f 100644 --- a/deal.II/lac/include/lac/petsc_block_sparse_matrix.h +++ b/deal.II/lac/include/lac/petsc_block_sparse_matrix.h @@ -183,7 +183,7 @@ namespace PETScWrappers * base class visible, though it is * protected. */ - BlockMatrixBase::clear; + using BlockMatrixBase::clear; /** * Exception diff --git a/deal.II/lac/include/lac/petsc_parallel_block_sparse_matrix.h b/deal.II/lac/include/lac/petsc_parallel_block_sparse_matrix.h index 07e04b2997..daf5c5168b 100644 --- a/deal.II/lac/include/lac/petsc_parallel_block_sparse_matrix.h +++ b/deal.II/lac/include/lac/petsc_parallel_block_sparse_matrix.h @@ -192,7 +192,7 @@ namespace PETScWrappers * base class visible, though it is * protected. */ - BlockMatrixBase::clear; + using BlockMatrixBase::clear; }; -- 2.39.5