tmp/tmpg1oxji08/{from.md → to.md}
RENAMED
|
@@ -0,0 +1,16 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
#### Header `<hazard_pointer>` synopsis <a id="hazard.pointer.syn">[[hazard.pointer.syn]]</a>
|
| 2 |
+
|
| 3 |
+
``` cpp
|
| 4 |
+
namespace std {
|
| 5 |
+
// [saferecl.hp.base], class template hazard_pointer_obj_base
|
| 6 |
+
template<class T, class D = default_delete<T>> class hazard_pointer_obj_base;
|
| 7 |
+
|
| 8 |
+
// [saferecl.hp.holder], class hazard_pointer
|
| 9 |
+
class hazard_pointer;
|
| 10 |
+
|
| 11 |
+
// [saferecl.hp.holder.nonmem], non-member functions
|
| 12 |
+
hazard_pointer make_hazard_pointer();
|
| 13 |
+
void swap(hazard_pointer&, hazard_pointer&) noexcept;
|
| 14 |
+
}
|
| 15 |
+
```
|
| 16 |
+
|