From: Wolfgang Bangerth Date: Fri, 16 Oct 2009 16:16:37 +0000 (+0000) Subject: Explicitely initialize base class. X-Git-Tag: v8.0.0~6885 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0cc7546da16ef58dac6ec27458422b3563c9e0bc;p=dealii.git Explicitely initialize base class. git-svn-id: https://svn.dealii.org/trunk@19911 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/lac/source/petsc_vector_base.cc b/deal.II/lac/source/petsc_vector_base.cc index 904b8eca18..a339a2ab3b 100644 --- a/deal.II/lac/source/petsc_vector_base.cc +++ b/deal.II/lac/source/petsc_vector_base.cc @@ -106,6 +106,7 @@ namespace PETScWrappers VectorBase::VectorBase (const VectorBase &v) : + Subscriptor (), last_action (LastAction::none) { int ierr = VecDuplicate (v.vector, &vector);