From 7a5d65aea6c7edf2ec4da8fc41a96c45c2737793 Mon Sep 17 00:00:00 2001 From: Martin Kronbichler Date: Wed, 25 Jan 2012 13:19:43 +0000 Subject: [PATCH] Avoid warning in copy constructor. git-svn-id: https://svn.dealii.org/trunk@24925 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/include/deal.II/lac/parallel_vector.h | 1 + 1 file changed, 1 insertion(+) 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), -- 2.39.5