From 4395ae38b0692146b91e9b3147dfe8313a997896 Mon Sep 17 00:00:00 2001 From: Simon Praetorius <simon.praetorius@tu-dresden.de> Date: Thu, 12 Oct 2023 16:59:18 +0200 Subject: [PATCH] Initialize all members of SequentialInformation --- dune/istl/paamg/pinfo.hh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dune/istl/paamg/pinfo.hh b/dune/istl/paamg/pinfo.hh index 973b5cecd..31a5bfdae 100644 --- a/dune/istl/paamg/pinfo.hh +++ b/dune/istl/paamg/pinfo.hh @@ -92,8 +92,8 @@ namespace Dune SequentialInformation(const SequentialInformation&) {} private: - MPICommunicator comm_; - GlobalLookupIndexSet gli; + MPICommunicator comm_{}; + GlobalLookupIndexSet gli{}; }; -- GitLab