|
2444 | 2444 | typename atomic<T>::value_type, memory_order) noexcept; |
2445 | 2445 | template<class T> |
2446 | 2446 | constexpr void atomic_store_explicit(atomic<T>*, // freestanding |
2447 | | - typename atomic<T>::value_type, memory_order) noexcept; |
| 2447 | + typename atomic<T>::value_type, memory_order) noexcept; |
2448 | 2448 | template<class T> |
2449 | 2449 | T atomic_load(const volatile atomic<T>*) noexcept; // freestanding |
2450 | 2450 | template<class T> |
|
2472 | 2472 | typename atomic<T>::value_type) noexcept; |
2473 | 2473 | template<class T> |
2474 | 2474 | constexpr bool atomic_compare_exchange_weak(atomic<T>*, // freestanding |
2475 | | - typename atomic<T>::value_type*, |
2476 | | - typename atomic<T>::value_type) noexcept; |
| 2475 | + typename atomic<T>::value_type*, |
| 2476 | + typename atomic<T>::value_type) noexcept; |
2477 | 2477 | template<class T> |
2478 | 2478 | bool atomic_compare_exchange_strong(volatile atomic<T>*, // freestanding |
2479 | 2479 | typename atomic<T>::value_type*, |
2480 | 2480 | typename atomic<T>::value_type) noexcept; |
2481 | 2481 | template<class T> |
2482 | 2482 | constexpr bool atomic_compare_exchange_strong(atomic<T>*, // freestanding |
2483 | | - typename atomic<T>::value_type*, |
2484 | | - typename atomic<T>::value_type) noexcept; |
| 2483 | + typename atomic<T>::value_type*, |
| 2484 | + typename atomic<T>::value_type) noexcept; |
2485 | 2485 | template<class T> |
2486 | 2486 | bool atomic_compare_exchange_weak_explicit(volatile atomic<T>*, // freestanding |
2487 | 2487 | typename atomic<T>::value_type*, |
|
0 commit comments