tmp/tmpkpbodr7n/{from.md → to.md}
RENAMED
|
@@ -0,0 +1,26 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
#### Observers <a id="support.srcloc.obs">[[support.srcloc.obs]]</a>
|
| 2 |
+
|
| 3 |
+
``` cpp
|
| 4 |
+
constexpr uint_least32_t line() const noexcept;
|
| 5 |
+
```
|
| 6 |
+
|
| 7 |
+
*Returns:* `line_`.
|
| 8 |
+
|
| 9 |
+
``` cpp
|
| 10 |
+
constexpr uint_least32_t column() const noexcept;
|
| 11 |
+
```
|
| 12 |
+
|
| 13 |
+
*Returns:* `column_`.
|
| 14 |
+
|
| 15 |
+
``` cpp
|
| 16 |
+
constexpr const char* file_name() const noexcept;
|
| 17 |
+
```
|
| 18 |
+
|
| 19 |
+
*Returns:* `file_name_`.
|
| 20 |
+
|
| 21 |
+
``` cpp
|
| 22 |
+
constexpr const char* function_name() const noexcept;
|
| 23 |
+
```
|
| 24 |
+
|
| 25 |
+
*Returns:* `function_name_`.
|
| 26 |
+
|