One more fix for issue #826

This commit is contained in:
Howard Hinnant 2024-05-10 16:44:22 -04:00
parent 8a93211679
commit 706b1286e8

View File

@ -2704,7 +2704,8 @@ operator<<(std::ostream& os, const time_zone& z)
os.width(8);
os << s.format_ << " ";
os << s.until_year_ << ' ' << s.until_date_;
os << " " << s.until_utc_ << " UTC";
os << " ";
date::operator<<(os, s.until_utc_) << " UTC";
os << " " << s.until_std_ << " STD";
os << " " << s.until_loc_;
os << " " << make_time(s.initial_save_);