From 1f5f4a0b62282187a8568f40821533933bf4ca40 Mon Sep 17 00:00:00 2001 From: Howard Hinnant Date: Mon, 6 Jun 2016 21:06:25 -0400 Subject: [PATCH] Add streaming inserter for utc_time. * Fix bug in utc_to_sys. --- tz.html | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/tz.html b/tz.html index b706984..6514a2b 100644 --- a/tz.html +++ b/tz.html @@ -26,7 +26,7 @@

Howard E. Hinnant
-2016-06-01
+2016-06-06
Creative
 Commons License
This work is licensed @@ -2454,6 +2454,22 @@ Output: — end example]

+
+template <class CharT, class Traits, class Duration>
+std::basic_ostream<class CharT, class Traits>&
+operator<<(std::basic_ostream<class CharT, class Traits>& os, const utc_time<Duration>& t)
+
+
+

+Effects: Streams t to os using the format "%F %T". This +differs from streaming sys_time only by the use of 60 for the +seconds specifier when the value represents an inserted leap second. +

+

+Returns: os. +

+
+

leap