From: nauber Date: Wed, 26 May 1999 08:21:37 +0000 (+0000) Subject: Made operator = private to avoid improper use. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=bda7442b2ad6bfcad84a0f0e8e5829116baecb63;p=dealii-svn.git Made operator = private to avoid improper use. git-svn-id: https://svn.dealii.org/trunk@1351 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/lac/include/lac/sparse_matrix.h b/deal.II/lac/include/lac/sparse_matrix.h index 88f0b6e956..c6bcccb081 100644 --- a/deal.II/lac/include/lac/sparse_matrix.h +++ b/deal.II/lac/include/lac/sparse_matrix.h @@ -1048,6 +1048,13 @@ class SparseMatrix : public Subscriptor // make all other sparse matrices // friends template friend class SparseMatrix; + + /** + * Made #operator =# private to + * avoid improper use. + */ + SparseMatrix& operator = (const SparseMatrix &); + };