tmp/tmp5ibzea7j/{from.md → to.md}
RENAMED
|
@@ -6,11 +6,11 @@ static consteval source_location current() noexcept;
|
|
| 6 |
|
| 7 |
*Returns:*
|
| 8 |
|
| 9 |
- When invoked by a function call whose *postfix-expression* is a
|
| 10 |
(possibly parenthesized) *id-expression* naming `current`, returns a
|
| 11 |
-
`source_location` with an implementation-defined value. The value
|
| 12 |
should be affected by `#line` [[cpp.line]] in the same manner as for
|
| 13 |
\_\_LINE\_\_ and \_\_FILE\_\_. The values of the exposition-only data
|
| 14 |
members of the returned `source_location` object are indicated in
|
| 15 |
[[support.srcloc.current]].
|
| 16 |
- Otherwise, when invoked in some other way, returns a `source_location`
|
|
@@ -55,7 +55,8 @@ void g() {
|
|
| 55 |
|
| 56 |
``` cpp
|
| 57 |
constexpr source_location() noexcept;
|
| 58 |
```
|
| 59 |
|
| 60 |
-
The data members are initialized with valid but unspecified
|
|
|
|
| 61 |
|
|
|
|
| 6 |
|
| 7 |
*Returns:*
|
| 8 |
|
| 9 |
- When invoked by a function call whose *postfix-expression* is a
|
| 10 |
(possibly parenthesized) *id-expression* naming `current`, returns a
|
| 11 |
+
`source_location` with an *implementation-defined* value. The value
|
| 12 |
should be affected by `#line` [[cpp.line]] in the same manner as for
|
| 13 |
\_\_LINE\_\_ and \_\_FILE\_\_. The values of the exposition-only data
|
| 14 |
members of the returned `source_location` object are indicated in
|
| 15 |
[[support.srcloc.current]].
|
| 16 |
- Otherwise, when invoked in some other way, returns a `source_location`
|
|
|
|
| 55 |
|
| 56 |
``` cpp
|
| 57 |
constexpr source_location() noexcept;
|
| 58 |
```
|
| 59 |
|
| 60 |
+
*Effects:* The data members are initialized with valid but unspecified
|
| 61 |
+
values.
|
| 62 |
|