tmp/tmpupocn60m/{from.md → to.md}
RENAMED
|
@@ -1,15 +1,15 @@
|
|
| 1 |
##### Modifiers <a id="unique.ptr.runtime.modifiers">[[unique.ptr.runtime.modifiers]]</a>
|
| 2 |
|
| 3 |
``` cpp
|
| 4 |
-
void reset(nullptr_t p = nullptr) noexcept;
|
| 5 |
```
|
| 6 |
|
| 7 |
*Effects:* Equivalent to `reset(pointer())`.
|
| 8 |
|
| 9 |
``` cpp
|
| 10 |
-
template<class U> void reset(U p) noexcept;
|
| 11 |
```
|
| 12 |
|
| 13 |
This function behaves the same as the `reset` member of the primary
|
| 14 |
template.
|
| 15 |
|
|
|
|
| 1 |
##### Modifiers <a id="unique.ptr.runtime.modifiers">[[unique.ptr.runtime.modifiers]]</a>
|
| 2 |
|
| 3 |
``` cpp
|
| 4 |
+
constexpr void reset(nullptr_t p = nullptr) noexcept;
|
| 5 |
```
|
| 6 |
|
| 7 |
*Effects:* Equivalent to `reset(pointer())`.
|
| 8 |
|
| 9 |
``` cpp
|
| 10 |
+
constexpr template<class U> void reset(U p) noexcept;
|
| 11 |
```
|
| 12 |
|
| 13 |
This function behaves the same as the `reset` member of the primary
|
| 14 |
template.
|
| 15 |
|