tmp/tmpf84bvnhx/{from.md → to.md}
RENAMED
|
@@ -0,0 +1,10 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
#### Modifiers <a id="stacktrace.basic.mod">[[stacktrace.basic.mod]]</a>
|
| 2 |
+
|
| 3 |
+
``` cpp
|
| 4 |
+
void swap(basic_stacktrace& other)
|
| 5 |
+
noexcept(allocator_traits<Allocator>::propagate_on_container_swap::value ||
|
| 6 |
+
allocator_traits<Allocator>::is_always_equal::value);
|
| 7 |
+
```
|
| 8 |
+
|
| 9 |
+
*Effects:* Exchanges the contents of `*this` and `other`.
|
| 10 |
+
|