From ed91190978e17b6369467c1e3c8f6024029b14bd Mon Sep 17 00:00:00 2001
From: Howard Hinnant tp
using the format flags as specified in [time.parse].
-If the parse fails to decode a valid date, failbit
will be set.
+If the parse fails to decode a valid date, ios_base::failbit
will be set.
If %Z
is used and successfully parsed, that value will be assigned to
@@ -2300,7 +2300,7 @@ from_stream(basic_istream<charT, traits>& is, const charT* fmt,
tp
using the format flags as specified in [time.parse].
-If the parse fails to decode a valid date, failbit
will be set.
+If the parse fails to decode a valid date, ios_base::failbit
will be set.
If %Z
is used and successfully parsed, that value will be assigned to
@@ -2489,7 +2489,7 @@ from_stream(basic_istream<charT, traits>& is, const charT* fmt,
tp
using the format flags as specified in [time.parse].
-If the parse fails to decode a valid date, failbit
will be set.
+If the parse fails to decode a valid date, ios_base::failbit
will be set.
If %Z
is used and successfully parsed, that value will be assigned to
@@ -2679,7 +2679,7 @@ from_stream(basic_istream<charT, traits>& is, const charT* fmt,
tp
using the format flags as specified in [time.parse].
-If the parse fails to decode a valid date, failbit
will be set.
+If the parse fails to decode a valid date, ios_base::failbit
will be set.
If %Z
is used and successfully parsed, that value will be assigned to
@@ -2827,7 +2827,7 @@ from_stream(basic_istream<charT, traits>& is, const charT* fmt,
tp
using the format flags as specified in [time.parse].
-If the parse fails to decode a valid date, failbit
will be set.
+If the parse fails to decode a valid date, ios_base::failbit
will be set.
If %Z
is used and successfully parsed, that value will be assigned to
@@ -2898,11 +2898,11 @@ the null-terminated array fmt
. fmt
encoding follows t
specified by [time.format]. If %Z
is used, it will be replaced with
*abbrev
if abbrev
is not equal to nullptr
. If
abbrev
is equal to nullptr
(and %Z
is used),
-failbit
will be set. If %z
is used (or a modified form of
+ios_base::failbit
will be set. If %z
is used (or a modified form of
%z
), it will be formatted with the value of *offset_sec
if
offset_sec
is not equal to nullptr
. If %z
(or a modified form of %z
) is used, and offset_sec
is equal to
-nullptr
, then failbit
is set.
+nullptr
, then ios_base::failbit
is set.
Returns: os
.
@@ -2923,7 +2923,7 @@ from_stream(basic_istream<charT, traits>& is, const charT* fmt,
tp
using the format flags as specified in [time.parse].
-If the parse fails to decode a valid date, failbit
will be set.
+If the parse fails to decode a valid date, ios_base::failbit
will be set.
If %Z
is used and successfully parsed, that value will be assigned to
@@ -3076,7 +3076,7 @@ Unless explicitly specified, Streamable
types will not contain time
abbreviation and time zone offset information. If available, the conversion specifiers
%Z
and %z
will format this information (respectively). If
the information is not available, and %Z
or %z
are contained
-in fmt
, failbit
will be set on os
.
+in fmt
, ios_base::failbit
will be set on os
.
@@ -3299,13 +3299,13 @@ left-padded with0
to four digits. 4 hours 30 minutes behind UTC. If the offset is zero,+0000
is used. The modified commands%Ez
and%Oz
insert a:
between the hours and minutes:-04:30
. If the offset information is not -available,failbit
will be set. +available,ios_base::failbit
will be set.%Z
The time zone abbreviation. If the time zone abbreviation is not available, - +failbit
will be set.ios_base::failbit
will be set.@@ -4054,7 +4054,7 @@ from_stream(basic_istream<charT, traits>& is, const charT* fmt, day d
using the format flags as specified in [time.parse].-If the parse fails to decode a valid day,
failbit
will be set. +If the parse fails to decode a valid day,ios_base::failbit
will be set.If
%Z
is used and successfully parsed, that value will be assigned to @@ -4431,7 +4431,7 @@ from_stream(basic_istream<charT, traits>& is, const charT* fmt,month m
using the format flags as specified in [time.parse].-If the parse fails to decode a valid month,
failbit
will be set. +If the parse fails to decode a valid month,ios_base::failbit
will be set.If
%Z
is used and successfully parsed, that value will be assigned to @@ -4829,7 +4829,7 @@ from_stream(basic_istream<charT, traits>& is, const charT* fmt,year y
using the format flags as specified in [time.parse].-If the parse fails to decode a valid year,
failbit
will be set. +If the parse fails to decode a valid year,ios_base::failbit
will be set.If
%Z
is used and successfully parsed, that value will be assigned to @@ -5235,7 +5235,7 @@ from_stream(basic_istream<charT, traits>& is, const charT* fmt,weekday wd
using the format flags as specified in [time.parse].-If the parse fails to decode a valid weekday,
failbit
will be set. +If the parse fails to decode a valid weekday,ios_base::failbit
will be set.If
%Z
is used and successfully parsed, that value will be assigned to @@ -5689,7 +5689,7 @@ from_stream(basic_istream<charT, traits>& is, const charT* fmt,month_day md
using the format flags as specified in [time.parse].-If the parse fails to decode a valid
month_day
,failbit
will be set. +If the parse fails to decode a validmonth_day
,ios_base::failbit
will be set.If
%Z
is used and successfully parsed, that value will be assigned to @@ -6425,7 +6425,7 @@ from_stream(basic_istream<charT, traits>& is, const charT* fmt,year_month ym
using the format flags as specified in [time.parse].-If the parse fails to decode a valid
year_month
,failbit
will be set. +If the parse fails to decode a validyear_month
,ios_base::failbit
will be set.If
%Z
is used and successfully parsed, that value will be assigned to @@ -6889,7 +6889,7 @@ from_stream(basic_istream<charT, traits>& is, const charT* fmt,year_month_day ymd
using the format flags as specified in [time.parse].-If the parse fails to decode a valid
year_month_day
,failbit
will be set. +If the parse fails to decode a validyear_month_day
,ios_base::failbit
will be set.If
%Z
is used and successfully parsed, that value will be assigned to