tmp/tmp96ff32vr/{from.md → to.md}
RENAMED
|
@@ -14,11 +14,11 @@ constexpr strong_ordering operator<=>(const year& x, const year& y) noexcept;
|
|
| 14 |
|
| 15 |
``` cpp
|
| 16 |
constexpr year operator+(const year& x, const years& y) noexcept;
|
| 17 |
```
|
| 18 |
|
| 19 |
-
*Returns:* `year{int{x} + y.count()}`.
|
| 20 |
|
| 21 |
``` cpp
|
| 22 |
constexpr year operator+(const years& x, const year& y) noexcept;
|
| 23 |
```
|
| 24 |
|
|
|
|
| 14 |
|
| 15 |
``` cpp
|
| 16 |
constexpr year operator+(const year& x, const years& y) noexcept;
|
| 17 |
```
|
| 18 |
|
| 19 |
+
*Returns:* `year{int{x} + static_cast<int>(y.count())}`.
|
| 20 |
|
| 21 |
``` cpp
|
| 22 |
constexpr year operator+(const years& x, const year& y) noexcept;
|
| 23 |
```
|
| 24 |
|