Skip to content

Commit 2dca0db

Browse files
committed
fix declaration
1 parent ab8e7f2 commit 2dca0db

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

reference/atomic/atomic_flag_notify_all.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,14 @@
88
namespace std {
99
void
1010
atomic_flag_notify_all(
11-
volatile atomic_flag* object) const noexcept; // (1) C++20
11+
volatile atomic_flag* object) noexcept; // (1) C++20
1212

1313
void
1414
atomic_flag_notify_all(
15-
atomic_flag* object) const noexcept; // (2) C++20
15+
atomic_flag* object) noexcept; // (2) C++20
1616
constexpr void
1717
atomic_flag_notify_all(
18-
atomic_flag* object) const noexcept; // (2) C++26
18+
atomic_flag* object) noexcept; // (2) C++26
1919
}
2020
```
2121

0 commit comments

Comments
 (0)