|
2 | 2 | <feed xmlns="http://www.w3.org/2005/Atom"> |
3 | 3 | <title>cpprefjp - C++日本語リファレンス</title> |
4 | 4 | <link href="https://cpprefjp.github.io" /> |
5 | | - <updated>2026-07-30T16:06:57.000612</updated> |
6 | | - <id>0cc5c455-8857-4baa-bd7a-f9044340acc9</id> |
| 5 | + <updated>2026-07-31T00:27:09.749477</updated> |
| 6 | + <id>b5e909be-851e-4094-b7ed-6909303fce79</id> |
7 | 7 |
|
8 | 8 |
|
| 9 | + <entry> |
| 10 | + <title>atomic_flag_notify_all -- atomic_flag_notify_all : コード修飾の修正漏れに対応</title> |
| 11 | + <link href="https://cpprefjp.github.io/reference/atomic/atomic_flag_notify_all.html"/> |
| 12 | + <id>906d8cad4f9e7f225a8aad550b0910cc57bb7f01:reference/atomic/atomic_flag_notify_all.md</id> |
| 13 | + <updated>2026-07-31T09:25:06+09:00</updated> |
| 14 | + |
| 15 | + <summary type="html"><pre><code>diff --git a/reference/atomic/atomic_flag_notify_all.md b/reference/atomic/atomic_flag_notify_all.md |
| 16 | +index bed541bea..105dd695c 100644 |
| 17 | +--- a/reference/atomic/atomic_flag_notify_all.md |
| 18 | ++++ b/reference/atomic/atomic_flag_notify_all.md |
| 19 | +@@ -68,7 +68,7 @@ int main() |
| 20 | + ``` |
| 21 | + * std::atomic_flag_notify_all[color ff0000] |
| 22 | + * std::atomic_flag_test[link atomic_flag_test.md] |
| 23 | +-* std::atomic_flag_clear[link atomic_flag_clear.md] |
| 24 | ++* std::atomic_flag_test_and_set[link atomic_flag_test_and_set.md] |
| 25 | + * std::atomic_flag_wait[link atomic_flag_wait.md] |
| 26 | + * ATOMIC_FLAG_INIT[link /reference/atomic/atomic_flag_init.md] |
| 27 | + |
| 28 | +</code></pre></summary> |
| 29 | + |
| 30 | + <author> |
| 31 | + <name>Akira Takahashi</name> |
| 32 | + <email>faithandbrave@gmail.com</email> |
| 33 | + </author> |
| 34 | + </entry> |
| 35 | + |
9 | 36 | <entry> |
10 | 37 | <title>曜日の定数 -- fix minor error</title> |
11 | 38 | <link href="https://cpprefjp.github.io/reference/chrono/weekday_constants.html"/> |
@@ -175,42 +202,6 @@ index 06a9887e2..1e966cea7 100644 |
175 | 202 |
|
176 | 203 | std::cout &lt;&lt; ret &lt;&lt; std::endl; |
177 | 204 | std::cout &lt;&lt; x &lt;&lt; std::endl; |
178 | | -</code></pre></summary> |
179 | | - |
180 | | - <author> |
181 | | - <name>rotarymars</name> |
182 | | - <email>s.goto2050@gmail.com</email> |
183 | | - </author> |
184 | | - </entry> |
185 | | - |
186 | | - <entry> |
187 | | - <title>atomic_flag_notify_all -- fix declaration</title> |
188 | | - <link href="https://cpprefjp.github.io/reference/atomic/atomic_flag_notify_all.html"/> |
189 | | - <id>2dca0dbe3d7c206aff7d0dbee960fe0c222dd635:reference/atomic/atomic_flag_notify_all.md</id> |
190 | | - <updated>2026-07-30T22:39:24+09:00</updated> |
191 | | - |
192 | | - <summary type="html"><pre><code>diff --git a/reference/atomic/atomic_flag_notify_all.md b/reference/atomic/atomic_flag_notify_all.md |
193 | | -index 02264b785..bed541bea 100644 |
194 | | ---- a/reference/atomic/atomic_flag_notify_all.md |
195 | | -+++ b/reference/atomic/atomic_flag_notify_all.md |
196 | | -@@ -8,14 +8,14 @@ |
197 | | - namespace std { |
198 | | - void |
199 | | - atomic_flag_notify_all( |
200 | | -- volatile atomic_flag* object) const noexcept; // (1) C++20 |
201 | | -+ volatile atomic_flag* object) noexcept; // (1) C++20 |
202 | | - |
203 | | - void |
204 | | - atomic_flag_notify_all( |
205 | | -- atomic_flag* object) const noexcept; // (2) C++20 |
206 | | -+ atomic_flag* object) noexcept; // (2) C++20 |
207 | | - constexpr void |
208 | | - atomic_flag_notify_all( |
209 | | -- atomic_flag* object) const noexcept; // (2) C++26 |
210 | | -+ atomic_flag* object) noexcept; // (2) C++26 |
211 | | - } |
212 | | - ``` |
213 | | - |
214 | 205 | </code></pre></summary> |
215 | 206 |
|
216 | 207 | <author> |
|
0 commit comments