File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed
src/coreComponents/common Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -275,17 +275,17 @@ static constexpr double YearSeconds = YearDays * DaySeconds;
275275struct TimeFormatInfo
276276{
277277 // / Total time (including the decimal part) this instance represents in seconds
278- double const m_totalSeconds;
278+ double const m_totalSeconds = 0.0 ;
279279 // / Number of integral years to show
280- int const m_years;
280+ int const m_years = 0 ;
281281 // / Number of integral days to show
282- int const m_days;
282+ int const m_days = 0 ;
283283 // / Number of integral hours to show
284- int const m_hours;
284+ int const m_hours = 0 ;
285285 // / Number of integral minutes to show
286- int const m_minutes;
286+ int const m_minutes = 0 ;
287287 // / Number of integral seconds to show
288- int const m_seconds;
288+ int const m_seconds = 0 ;
289289
290290 /* *
291291 * @brief Construct a TimeFormatInfo from raw data (which must be coherent)
You can’t perform that action at this time.
0 commit comments