forked from HowardHinnant/date
tm variable is not initialized in to_stream(), and valgrind warns about "Conditional jump or move depends on uninitialised value(s)". This is a false positive, as strftime always reads tm_hour, even if it ends up never using it. To silence the warnings, initialize tm to zero.