File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change 280
280
bool, memory_order) noexcept;
281
281
void atomic_flag_notify_one(volatile atomic_flag*) noexcept;
282
282
void atomic_flag_notify_one(atomic_flag*) noexcept;
283
- void atomic_flag_notify_all(volatile atomic_flag*) const noexcept;
284
- void atomic_flag_notify_all(atomic_flag*) const noexcept;
283
+ void atomic_flag_notify_all(volatile atomic_flag*) noexcept;
284
+ void atomic_flag_notify_all(atomic_flag*) noexcept;
285
285
#define ATOMIC_FLAG_INIT @\seebelow@
286
286
287
287
// \ref {atomics.fences }, fences
2650
2650
bool, memory_order) noexcept;
2651
2651
void atomic_flag_notify_one(volatile atomic_flag*) noexcept;
2652
2652
void atomic_flag_notify_one(atomic_flag*) noexcept;
2653
- void atomic_flag_notify_all(volatile atomic_flag*) const noexcept;
2654
- void atomic_flag_notify_all(atomic_flag*) const noexcept;
2653
+ void atomic_flag_notify_all(volatile atomic_flag*) noexcept;
2654
+ void atomic_flag_notify_all(atomic_flag*) noexcept;
2655
2655
2656
2656
#define ATOMIC_FLAG_INIT @\seebelow@
2657
2657
}
2820
2820
\end {itemdescr }
2821
2821
2822
2822
\begin {itemdecl }
2823
- void atomic_flag_notify_all(volatile atomic_flag* object) const noexcept;
2824
- void atomic_flag_notify_all(atomic_flag* object) const noexcept;
2823
+ void atomic_flag_notify_all(volatile atomic_flag* object) noexcept;
2824
+ void atomic_flag_notify_all(atomic_flag* object) noexcept;
2825
2825
void atomic_flag::notify_all() volatile noexcept;
2826
2826
void atomic_flag::notify_all() noexcept;
2827
2827
\end {itemdecl }
You can’t perform that action at this time.
0 commit comments