From f8f2c9db108e6c64ab708f0046eac88b68928460 Mon Sep 17 00:00:00 2001
From: Howard Hinnant
Date: Sun, 18 Jun 2017 11:55:34 -0400
Subject: [PATCH] Add paragraph to [time.parse] concerning failbit
* The entire format string must be parsed, else failbit gets set.
---
d0355r3.html | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/d0355r3.html b/d0355r3.html
index 4612453..fa16421 100644
--- a/d0355r3.html
+++ b/d0355r3.html
@@ -3421,6 +3421,11 @@ except for white space, are parsed unchanged from the stream. A white space char
matches zero or more white space characters in the input stream.
+
+If the from_stream
overload fails to parse everything specified by the
+format string, ios_base::failbit
is set in the basic_istream
.
+
+