From: nauber Date: Wed, 26 May 1999 08:21:37 +0000 (+0000) Subject: Made operator = private to avoid improper use. X-Git-Tag: v8.0.0~21940 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d7b702443da0182a5a9793a811c001b8cd420f41;p=dealii.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 &); + };