From 78c120f74a509ebd3f96c004394ac988f38626bb Mon Sep 17 00:00:00 2001
From: Howard Hinnant
Effects: Constructs a local variable of type
@@ -3004,8 +3005,8 @@ is a valid expression.
Effects: Constructs a local variable of type
@@ -3029,7 +3030,8 @@ is a valid expression.
Effects: Constructs a local variable of type
@@ -3053,8 +3055,9 @@ is a valid expression.
Effects: Constructs a local variable of type
diff --git a/date.html b/date.html
index ca24085..80c464c 100644
--- a/date.html
+++ b/date.html
@@ -26,7 +26,7 @@
basic_ostringstream<charT>
(for exposition purposes, named
-os
). Then calls to_stream(os, fmt, s)
.
+os
). Executes os.exceptions(ios::failbit | ios::badbit)
.
+Then calls to_stream(os, fmt, s)
.
basic_ostringstream<charT>
(for exposition purposes, named
-os
). Then calls os.imbue(loc)
. Then calls
-to_stream(os, fmt, s)
.
+os
). Executes os.exceptions(ios::failbit | ios::badbit)
.
+Then calls os.imbue(loc)
. Then calls to_stream(os, fmt, s)
.
basic_ostringstream<charT, traits, Alloc>
(for exposition purposes, named
-os
). Then calls to_stream(os, fmt.c_str(), s)
.
+os
). Executes os.exceptions(ios::failbit | ios::badbit)
.
+Then calls to_stream(os, fmt.c_str(), s)
.
basic_ostringstream<charT, traits, Alloc>
(for exposition purposes, named
-os
). Then calls os.imbue(loc)
. Then calls
-to_stream(os, fmt.c_str(), s)
.
+os
). Then calls os.imbue(loc)
.
+Executes os.exceptions(ios::failbit | ios::badbit)
.
+Then calls to_stream(os, fmt.c_str(), s)
.
Howard E. Hinnant
-2017-09-30
+2017-10-14
@@ -7922,7 +7922,9 @@ is valid.
date
Effects: Constructs a std::basic_ostringstream<CharT> os
and
-imbues it with loc
. Calls to_stream(os, fmt, tp)
.
+imbues it with loc
.
+Executes os.exceptions(std::ios::failbit | std::ios::badbit)
.
+Calls to_stream(os, fmt, tp)
.
Returns: os.str()
.
@@ -7943,6 +7945,7 @@ is valid.
Effects: Constructs a std::basic_ostringstream<CharT> os
.
+Executes os.exceptions(std::ios::failbit | std::ios::badbit)
.
Calls to_stream(os, fmt, tp)
.
@@ -7964,7 +7967,9 @@ is valid.
Effects: Constructs a std::basic_ostringstream<CharT> os
and
-imbues it with loc
. Calls to_stream(os, fmt.c_str(), tp)
.
+imbues it with loc
.
+Executes os.exceptions(std::ios::failbit | std::ios::badbit)
.
+Calls to_stream(os, fmt.c_str(), tp)
.
Returns: os.str()
.
@@ -7985,6 +7990,7 @@ is valid.
Effects: Constructs a std::basic_ostringstream<CharT> os
.
+Executes os.exceptions(std::ios::failbit | std::ios::badbit)
.
Calls to_stream(os, fmt.c_str(), tp)
.