Skip to content

Commit 7f52c88

Browse files
committed
revert CI fix as it is unrelated (see #3910)
1 parent aaabd49 commit 7f52c88

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/coreComponents/common/Units.hpp

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -275,17 +275,17 @@ static constexpr double YearSeconds = YearDays * DaySeconds;
275275
struct 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)

0 commit comments

Comments
 (0)