diff --git a/d0355r4.html b/d0355r4.html
index 0b4bce5..4104dae 100644
--- a/d0355r4.html
+++ b/d0355r4.html
@@ -37,7 +37,7 @@
Document number: D0355R4
Howard E. Hinnant
-2017-06-27
+2017-06-29
<chrono>
to Calendars and Time Zonesstring_view
+without compromising constructor deduction functionality.zoned_time
default constructor.zoned_time(const char* name, ...)
overloads to enable
-implicit deduction guides. Still to do: Rewrite in terms of string_view
-without compromising constructor deduction functionality.time_of_day
default constructor.@@ -7576,7 +7580,7 @@ constexpr explicit year_month_weekday::operator local_days() const noexcept;-Requires:
ok() == true
. +Requires:y_.ok() && m_.ok() && wdi_.weekday().ok() == true
.-Returns: A
sys_days
which represents the date represented by -*this
. +Returns: Asys_days
which represents the date +(index() - 1)*7
days after the first +weekday()
ofyear()/month()
. Ifindex()
is +0
the returnedsys_days
represents the date 7 days prior +to the firstweekday()
ofyear()/month()
.
-Requires:
ok() == true
. +Requires:y_.ok() && m_.ok() && wdi_.weekday().ok() == true
.Effects: Equivalent to:
return local_days{sys_days{*this}.time_since_epoch()};
@@ -7896,8 +7900,8 @@ constexpr year_month_weekday_last::operator sys_days() const noexcept; Requires:ok() == true
.-Returns: A
sys_days
which represents the date represented by -*this
. +Returns: Asys_days
which represents the last +weekday()
ofyear()/month()
.