From cb60f01845d0c97cf1a215eddcbcee63f57c62d9 Mon Sep 17 00:00:00 2001 From: Dmitri Naumov <dmitri.naumov@ufz.de> Date: Fri, 11 Nov 2016 12:58:53 +0100 Subject: [PATCH] [PL] SD: Fix uninitialized warning. --- ProcessLib/SmallDeformation/SmallDeformationProcessData.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ProcessLib/SmallDeformation/SmallDeformationProcessData.h b/ProcessLib/SmallDeformation/SmallDeformationProcessData.h index 1f38128b892..8545a642c30 100644 --- a/ProcessLib/SmallDeformation/SmallDeformationProcessData.h +++ b/ProcessLib/SmallDeformation/SmallDeformationProcessData.h @@ -45,8 +45,8 @@ struct SmallDeformationProcessData std::unique_ptr<MaterialLib::Solids::MechanicsBase<DisplacementDim>> _material; - double dt; - double t; + double dt = 0; + double t = 0; }; } // namespace SmallDeformation -- GitLab