From: hartmann Date: Mon, 3 May 1999 14:36:31 +0000 (+0000) Subject: Copy constructor of SparseMatrixStruct needs explicit initialization of the base... X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fac4ae91ce15203c5a9a7044e39416ddfaa43618;p=dealii-svn.git Copy constructor of SparseMatrixStruct needs explicit initialization of the base class 'Subscriptor' git-svn-id: https://svn.dealii.org/trunk@1244 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/lac/source/sparse_matrix.cc b/deal.II/lac/source/sparse_matrix.cc index a3e52b2f11..ca35ddb28f 100644 --- a/deal.II/lac/source/sparse_matrix.cc +++ b/deal.II/lac/source/sparse_matrix.cc @@ -29,6 +29,7 @@ SparseMatrixStruct::SparseMatrixStruct () : SparseMatrixStruct::SparseMatrixStruct (const SparseMatrixStruct &s) : + Subscriptor(), max_dim(0), max_vec_len(0), rowstart(0),