From 769dc09f286a3eea14503820d2392e6ef04f28a2 Mon Sep 17 00:00:00 2001 From: Howard Hinnant Date: Sun, 16 Oct 2016 23:13:36 -0400 Subject: [PATCH] Minor polish --- d0355r1.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/d0355r1.html b/d0355r1.html index 642544a..51fa779 100644 --- a/d0355r1.html +++ b/d0355r1.html @@ -31,7 +31,7 @@ Document number: D0355R1

Howard E. Hinnant
-2016-10-15
+2016-10-16

Extending <chrono> to Calendars and Time Zones

@@ -2023,7 +2023,7 @@ The family of time points denoted by local_time<Duration> are based on the pseudo clock local_t. local_t has no member now() and thus does not meet the clock requirements. Nevertheless local_time<Duration> serves the vital role of -representing time local with respect to a not-yet-specified time zone. Aside +representing local time with respect to a not-yet-specified time zone. Aside from being able to get the current time, the complete time_point algebra is available for local_time<Duration> (just as for sys_time<Duration>). @@ -2451,7 +2451,7 @@ constexpr month& month::operator++() noexcept;

-Effects: If m_ != 12, ++m_. Otherwise sets +Effects: If m_ < 12, ++m_. Otherwise sets m_ to 1.

@@ -2479,7 +2479,7 @@ constexpr month& month::operator--() noexcept;

-Effects: If m_ != 1, --m_. Otherwise sets +Effects: If m_ > 1, --m_. Otherwise sets m_ to 12.