Skip to content

Commit 1b2bfda

Browse files
committed
[atomic] Remove invalid trailing 'const' from non-member function
atomic_flag_notify_all.
1 parent f943a21 commit 1b2bfda

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

source/atomics.tex

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -280,8 +280,8 @@
280280
bool, memory_order) noexcept;
281281
void atomic_flag_notify_one(volatile atomic_flag*) noexcept;
282282
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;
285285
#define ATOMIC_FLAG_INIT @\seebelow@
286286

287287
// \ref{atomics.fences}, fences
@@ -2650,8 +2650,8 @@
26502650
bool, memory_order) noexcept;
26512651
void atomic_flag_notify_one(volatile atomic_flag*) noexcept;
26522652
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;
26552655

26562656
#define ATOMIC_FLAG_INIT @\seebelow@
26572657
}
@@ -2820,8 +2820,8 @@
28202820
\end{itemdescr}
28212821

28222822
\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;
28252825
void atomic_flag::notify_all() volatile noexcept;
28262826
void atomic_flag::notify_all() noexcept;
28272827
\end{itemdecl}

0 commit comments

Comments
 (0)