From: hartmann Date: Mon, 3 May 1999 11:15:01 +0000 (+0000) Subject: Copy constructor needs explicit initialization of the base class 'Subscriptor' X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a0100560ed0671a94947522cb607c6b044472401;p=dealii-svn.git Copy constructor needs explicit initialization of the base class 'Subscriptor' git-svn-id: https://svn.dealii.org/trunk@1239 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/lac/include/lac/full_matrix.templates.h b/deal.II/lac/include/lac/full_matrix.templates.h index fced113f2f..dff65e6cb2 100644 --- a/deal.II/lac/include/lac/full_matrix.templates.h +++ b/deal.II/lac/include/lac/full_matrix.templates.h @@ -26,7 +26,8 @@ FullMatrix::FullMatrix (const unsigned int m, const unsigned int n) template -FullMatrix::FullMatrix (const FullMatrix &m) +FullMatrix::FullMatrix (const FullMatrix &m): + Subscriptor() { init (m.dim_image, m.dim_range); if (dim_range*dim_image != 0)