From 1a88daa298115148dd4a95d70c93aa24cab3f833 Mon Sep 17 00:00:00 2001 From: guido Date: Wed, 2 Oct 2002 17:47:23 +0000 Subject: [PATCH] spurious virtual removed git-svn-id: https://svn.dealii.org/trunk@6592 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/lac/include/lac/sparse_matrix_ez.h | 22 ++++++++++------------ 1 file changed, 10 insertions(+), 12 deletions(-) diff --git a/deal.II/lac/include/lac/sparse_matrix_ez.h b/deal.II/lac/include/lac/sparse_matrix_ez.h index 3a93292755..637ccad61b 100644 --- a/deal.II/lac/include/lac/sparse_matrix_ez.h +++ b/deal.II/lac/include/lac/sparse_matrix_ez.h @@ -297,12 +297,10 @@ class SparseMatrixEZ : public Subscriptor SparseMatrixEZ (); /** - * Copy constructor. This constructor is - * only allowed to be called if the matrix - * to be copied is empty. This is for the - * same reason as for the - * @p{SparsityPattern}, see there for the - * details. + * Dummy copy constructor. This + * is here for use in + * containers. It may only be + * called for empty objects. * * If you really want to copy a whole * matrix, you can do so by using the @@ -333,7 +331,7 @@ class SparseMatrixEZ : public Subscriptor * release the memory of the sparsity * structure. */ - virtual ~SparseMatrixEZ (); + ~SparseMatrixEZ (); /** * Pseudo operator only copying @@ -355,10 +353,10 @@ class SparseMatrixEZ : public Subscriptor * efficient assembling of the * matrix. */ - virtual void reinit (unsigned int n_rows, - unsigned int n_columns = n_rows, - unsigned int default_row_length = Entry::invalid, - unsigned int default_increment = Entry::invalid); + void reinit (unsigned int n_rows, + unsigned int n_columns = n_rows, + unsigned int default_row_length = Entry::invalid, + unsigned int default_increment = Entry::invalid); /** * Release all memory and return @@ -368,7 +366,7 @@ class SparseMatrixEZ : public Subscriptor * the sparsity pattern it was * previously tied to. */ - virtual void clear (); + void clear (); /** * Return whether the object is -- 2.39.5