diff --git a/d0355r4.html b/d0355r4.html index 37715d8..1b937ff 100644 --- a/d0355r4.html +++ b/d0355r4.html @@ -2980,7 +2980,8 @@ is a valid expression.

Effects: Constructs a local variable of type 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).

@@ -3004,8 +3005,8 @@ is a valid expression.

Effects: Constructs a local variable of type 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).

@@ -3029,7 +3030,8 @@ is a valid expression.

Effects: Constructs a local variable of type 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).

@@ -3053,8 +3055,9 @@ is a valid expression.

Effects: Constructs a local variable of type 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).

diff --git a/date.html b/date.html index ca24085..80c464c 100644 --- a/date.html +++ b/date.html @@ -26,7 +26,7 @@

Howard E. Hinnant
-2017-09-30
+2017-10-14


date

@@ -7922,7 +7922,9 @@ is valid.

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).