From fac4ae91ce15203c5a9a7044e39416ddfaa43618 Mon Sep 17 00:00:00 2001 From: hartmann Date: Mon, 3 May 1999 14:36:31 +0000 Subject: [PATCH] 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 --- deal.II/lac/source/sparse_matrix.cc | 1 + 1 file changed, 1 insertion(+) 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), -- 2.39.5