Skip to content

Commit 783e2bc

Browse files
committed
review
1 parent e80faab commit 783e2bc

1 file changed

Lines changed: 10 additions & 10 deletions

File tree

any_view.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1088,9 +1088,7 @@ constexpr any_view(any_view&& other) noexcept;
10881088
10891089
:::bq
10901090
1091-
[6]{.pnum} *Postconditions*: The *target view object* of `*this` is the *target view object* `other` had before construction, and `other` is in a valid state with an unspecified value.
1092-
1093-
<!-- TODO: You really end up with two objects, one is move-initialized from the other one. So you can't say "is the target view object other had [...]". -->
1091+
[6]{.pnum} *Postconditions*: `*this` has no *target view object* if `other` had no *target view object*. Otherwise, the *target view object* of `*this` is equivalent to the *target view object* of `other` before the construction of `*this`, and `other` is in a valid state with an unspecified value.
10941092
10951093
:::
10961094
@@ -1478,14 +1476,16 @@ return false;
14781476
- [21.3]{.pnum} Otherwise, let `it1` be an lvalue designating the *target iterator object* of `x`, and `it2` be an lvalue designating the *target iterator object* of `y`.
14791477

14801478
- [21.3.1]{.pnum} If `is_same_v<decltype(it1), decltype(it2)>` is `false`, equivalent to
1481-
```cpp
1482-
return false;
1483-
```
14841479

1485-
[21.3.2]{.pnum} Otherwise, equivalent to
1486-
```cpp
1487-
return it1 == it2;
1488-
```
1480+
```cpp
1481+
return false;
1482+
```
1483+
1484+
- [21.3.2]{.pnum} Otherwise, equivalent to
1485+
1486+
```cpp
1487+
return it1 == it2;
1488+
```
14891489

14901490
:::
14911491

0 commit comments

Comments
 (0)