From bda7442b2ad6bfcad84a0f0e8e5829116baecb63 Mon Sep 17 00:00:00 2001 From: nauber Date: Wed, 26 May 1999 08:21:37 +0000 Subject: [PATCH] Made operator = private to avoid improper use. git-svn-id: https://svn.dealii.org/trunk@1351 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/lac/include/lac/sparse_matrix.h | 7 +++++++ 1 file changed, 7 insertions(+) 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 &); + }; -- 2.39.5