Skip to content

Commit

Permalink
Merge pull request idaholab#27747 from lindsayad/valgrind-fix-26870
Browse files Browse the repository at this point in the history
Initialize _delay_value
  • Loading branch information
lindsayad authored May 31, 2024
2 parents f14bf8e + bc05a1d commit 843ddc9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion modules/misc/src/postprocessors/GeneralSensorPostprocessor.C
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,8 @@ GeneralSensorPostprocessor::GeneralSensorPostprocessor(const InputParameters & p
_input_signal_values(declareRestartableData<std::vector<Real>>("input_signal_values")),
_integrand(declareRestartableData<std::vector<Real>>("integrand")),
_R_function_values(declareRestartableData<std::vector<Real>>("R_function_values")),
_seed(getParam<unsigned int>("seed"))
_seed(getParam<unsigned int>("seed")),
_delay_value(0)
{
}

Expand Down

0 comments on commit 843ddc9

Please sign in to comment.