Skip to content
Snippets Groups Projects
Commit cb60f018 authored by Dmitri Naumov's avatar Dmitri Naumov Committed by Dmitri Naumov
Browse files

[PL] SD: Fix uninitialized warning.

parent 1d91e135
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment