forked from HowardHinnant/date
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
41657bc
commit 769dc09
Showing
1 changed file
with
4 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -31,7 +31,7 @@ | |
Document number: D0355R1<br/> | ||
<br/> | ||
<a href="mailto:[email protected]">Howard E. Hinnant</a><br/> | ||
2016-10-15<br/> | ||
2016-10-16<br/> | ||
</address> | ||
<hr/> | ||
<h1>Extending <code><chrono></code> to Calendars and Time Zones</h1> | ||
|
@@ -2023,7 +2023,7 @@ <h3>20.17.7.7 local_time [time.clock.local_time]</h3> | |
based on the <i>pseudo clock</i> <code>local_t</code>. <code>local_t</code> has | ||
no member <code>now()</code> and thus does not meet the clock requirements. | ||
Nevertheless <code>local_time<Duration></code> 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 <code>time_point</code> | ||
algebra is available for <code>local_time<Duration></code> (just as for | ||
<code>sys_time<Duration></code>). | ||
|
@@ -2451,7 +2451,7 @@ <h4>20.17.8.3 Class <code>month</code> [time.calendar.month]</h4> | |
|
||
<blockquote> | ||
<p> | ||
<i>Effects:</i> If <code>m_ != 12</code>, <code>++m_</code>. Otherwise sets | ||
<i>Effects:</i> If <code>m_ < 12</code>, <code>++m_</code>. Otherwise sets | ||
<code>m_</code> to 1. | ||
</p> | ||
<p> | ||
|
@@ -2479,7 +2479,7 @@ <h4>20.17.8.3 Class <code>month</code> [time.calendar.month]</h4> | |
|
||
<blockquote> | ||
<p> | ||
<i>Effects:</i> If <code>m_ != 1</code>, <code>--m_</code>. Otherwise sets | ||
<i>Effects:</i> If <code>m_ > 1</code>, <code>--m_</code>. Otherwise sets | ||
<code>m_</code> to 12. | ||
</p> | ||
<p> | ||
|