From Jason Turner

[time.point.arithmetic]

Diff to HTML by rtfpessoa

tmp/tmpgqd3ds5y/{from.md → to.md} RENAMED
@@ -1,18 +1,18 @@
1
  #### `time_point` arithmetic <a id="time.point.arithmetic">[[time.point.arithmetic]]</a>
2
 
3
  ``` cpp
4
- time_point& operator+=(const duration& d);
5
  ```
6
 
7
- *Effects:* `d_ += d`.
8
 
9
  *Returns:* `*this`.
10
 
11
  ``` cpp
12
- time_point& operator-=(const duration& d);
13
  ```
14
 
15
- *Effects:* `d_ -= d`.
16
 
17
  *Returns:* `*this`.
18
 
 
1
  #### `time_point` arithmetic <a id="time.point.arithmetic">[[time.point.arithmetic]]</a>
2
 
3
  ``` cpp
4
+ constexpr time_point& operator+=(const duration& d);
5
  ```
6
 
7
+ *Effects:* As if by: `d_ += d;`
8
 
9
  *Returns:* `*this`.
10
 
11
  ``` cpp
12
+ constexpr time_point& operator-=(const duration& d);
13
  ```
14
 
15
+ *Effects:* As if by: `d_ -= d;`
16
 
17
  *Returns:* `*this`.
18