From: Martin Kronbichler Date: Wed, 25 Jan 2012 13:19:43 +0000 (+0000) Subject: Avoid warning in copy constructor. X-Git-Tag: v8.0.0~3006 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7a5d65aea6c7edf2ec4da8fc41a96c45c2737793;p=dealii.git Avoid warning in copy constructor. git-svn-id: https://svn.dealii.org/trunk@24925 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/include/deal.II/lac/parallel_vector.h b/deal.II/include/deal.II/lac/parallel_vector.h index 1fdb206614..6c42c96712 100644 --- a/deal.II/include/deal.II/lac/parallel_vector.h +++ b/deal.II/include/deal.II/lac/parallel_vector.h @@ -952,6 +952,7 @@ namespace parallel inline Vector::Vector (const Vector &v) : + Subscriptor(), allocated_size (0), val (0), import_data (0),