From: Wolfgang Bangerth Date: Fri, 11 Jun 2004 14:48:38 +0000 (+0000) Subject: Use a more modern way to achieve things. X-Git-Tag: v8.0.0~15038 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1513985f5ddca910d467514324a2fbe997f7eb0b;p=dealii.git Use a more modern way to achieve things. git-svn-id: https://svn.dealii.org/trunk@9421 0785d39b-7218-0410-832d-ea1e28bc413d --- 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; };