File tree Expand file tree Collapse file tree 1 file changed +9
-8
lines changed Expand file tree Collapse file tree 1 file changed +9
-8
lines changed Original file line number Diff line number Diff line change 2222
2222
memory_order) noexcept;
2223
2223
2224
2224
template<class T>
2225
- void atomic_wait(const volatile atomic<T>*, typename atomic<T>::value_type); // freestanding
2225
+ void atomic_wait(const volatile atomic<T>*, // freestanding
2226
+ typename atomic<T>::value_type) noexcept;
2226
2227
template<class T>
2227
- void atomic_wait(const atomic<T>*, typename atomic<T>::value_type); // freestanding
2228
+ void atomic_wait(const atomic<T>*, typename atomic<T>::value_type) noexcept; // freestanding
2228
2229
template<class T>
2229
2230
void atomic_wait_explicit(const volatile atomic<T>*, // freestanding
2230
2231
typename atomic<T>::value_type,
2231
- memory_order);
2232
+ memory_order) noexcept ;
2232
2233
template<class T>
2233
2234
void atomic_wait_explicit(const atomic<T>*, typename atomic<T>::value_type, // freestanding
2234
- memory_order);
2235
+ memory_order) noexcept ;
2235
2236
template<class T>
2236
- void atomic_notify_one(volatile atomic<T>*); // freestanding
2237
+ void atomic_notify_one(volatile atomic<T>*) noexcept; // freestanding
2237
2238
template<class T>
2238
- void atomic_notify_one(atomic<T>*); // freestanding
2239
+ void atomic_notify_one(atomic<T>*) noexcept; // freestanding
2239
2240
template<class T>
2240
- void atomic_notify_all(volatile atomic<T>*); // freestanding
2241
+ void atomic_notify_all(volatile atomic<T>*) noexcept; // freestanding
2241
2242
template<class T>
2242
- void atomic_notify_all(atomic<T>*); // freestanding
2243
+ void atomic_notify_all(atomic<T>*) noexcept; // freestanding
2243
2244
2244
2245
// \ref {atomics.alias }, type aliases
2245
2246
using atomic_bool = atomic<bool>; // freestanding
You can’t perform that action at this time.
0 commit comments