Skip to content
Snippets Groups Projects
Commit 1d91e135 authored by Christoph Lehmann's avatar Christoph Lehmann Committed by Dmitri Naumov
Browse files

[PL] fix uninitialized warning

parent 7c040448
No related branches found
No related tags found
No related merge requests found
...@@ -81,8 +81,8 @@ struct HydroMechanicsProcessData ...@@ -81,8 +81,8 @@ struct HydroMechanicsProcessData
Parameter<double> const& porosity; Parameter<double> const& porosity;
Parameter<double> const& solid_density; Parameter<double> const& solid_density;
Eigen::Matrix<double, DisplacementDim, 1> const specific_body_force; Eigen::Matrix<double, DisplacementDim, 1> const specific_body_force;
double dt; double dt = 0.0;
double t; double t = 0.0;
}; };
} // namespace HydroMechanics } // namespace HydroMechanics
......
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