tmp/tmpy0p8rhj6/{from.md → to.md}
RENAMED
|
@@ -0,0 +1,15 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
### General <a id="depr.atomics.general">[[depr.atomics.general]]</a>
|
| 2 |
+
|
| 3 |
+
The header `<atomic>` has the following additions.
|
| 4 |
+
|
| 5 |
+
``` cpp
|
| 6 |
+
namespace std {
|
| 7 |
+
template<class T>
|
| 8 |
+
void atomic_init(volatile atomic<T>*, typename atomic<T>::value_type) noexcept;
|
| 9 |
+
template<class T>
|
| 10 |
+
void atomic_init(atomic<T>*, typename atomic<T>::value_type) noexcept;
|
| 11 |
+
|
| 12 |
+
#define ATOMIC_VAR_INIT(value) see below
|
| 13 |
+
}
|
| 14 |
+
```
|
| 15 |
+
|