From f3647d3e6c3acd2ff1e17ccd55c1d018cd941371 Mon Sep 17 00:00:00 2001 From: Howard Hinnant Date: Tue, 26 Dec 2017 15:20:42 -0500 Subject: [PATCH] Remove references to strftime --- d0355r5.html | 25 ++++++++----------------- 1 file changed, 8 insertions(+), 17 deletions(-) diff --git a/d0355r5.html b/d0355r5.html index fef23a6..0488105 100644 --- a/d0355r5.html +++ b/d0355r5.html @@ -8641,11 +8641,9 @@ operator<<(basic_ostream<charT, traits>& os, const time_of_day&l

Effects: If t is a 24-hour time, outputs to os -according to the strftime format: "%H00". "%H" will emit a leading 0 for -hours less than 10. +according to the format: "%H00" ([time.format]). Else t is a 12-hour time, outputs to os -according to the strftime format: "%I%p" according to the C locale, except -that no leading zero is output for hours less than 10. +according to the format: "%I%p" ([time.format]).

Returns: os. @@ -8770,11 +8768,9 @@ operator<<(basic_ostream<charT, traits>& os, const time_of_day&l

Effects: If t is a 24-hour time, outputs to os -according to the strftime format: "%H:%M". "%H" will emit a leading 0 for -hours less than 10. +according to the format: "%H:%M" ([time.format]). Else t is a 12-hour time, outputs to os -according to the strftime format: "%I:%M%p" according to the C locale, except -that no leading zero is output for hours less than 10. +according to the format: "%I:%M%p" ([time.format]).

Returns: os. @@ -8912,11 +8908,9 @@ operator<<(basic_ostream<charT, traits>& os, const time_of_day&l

Effects: If t is a 24-hour time, outputs to os -according to the strftime format: "%H:%M%S". "%H" will emit a leading 0 for -hours less than 10. +according to the format: "%T" ([time.format]). Else t is a 12-hour time, outputs to os -according to the strftime format: "%I:%M%S%p" according to the C locale, except -that no leading zero is output for hours less than 10. +according to the format: "%I:%M%:S%p" ([time.format]).

Returns: os. @@ -9075,12 +9069,9 @@ operator<<(basic_ostream<charT, traits>& os, const time_of_day&l

Effects: If t is a 24-hour time, outputs to os -according to the strftime format: "%H:%M%S.%s". "%H" will emit a leading 0 for -hours less than 10. "%s" is not a strftime code and represents the fractional -seconds. +according to the format: "%T" ([time.format]). Else t is a 12-hour time, outputs to os -according to the strftime format: "%I:%M%S.%s%p" according to the C locale, except -that no leading zero is output for hours less than 10. +according to the format: "%I:%M:%S" ([time.format]).

Returns: os.