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 >2024-11-06T14:41:48.913219 </updated >
6
- <id >f3376d2b-8f7e-4a45-b06a-dcae87d092b9 </id >
5
+ <updated >2024-11-07T09:38:26.669039 </updated >
6
+ <id >a15d4a3f-33b5-421c-86c8-d8503fd42f9d </id >
7
7
8
8
9
+ <entry >
10
+ <title >はじめてのコントリビュート -- start_editing: 自動テストの一覧を最新化</title >
11
+ <link href =" https://cpprefjp.github.io/start_editing.html" />
12
+ <id >072cb24172ecc3f07b680de4093b623ac327658c:start_editing.md</id >
13
+ <updated >2024-11-07T18:34:51+09:00</updated >
14
+
15
+ <summary type =" html" >< pre>< code> diff --git a/start_editing.md b/start_editing.md
16
+ index 4ac193aa8..c200f29c9 100644
17
+ --- a/start_editing.md
18
+ +++ b/start_editing.md
19
+ @@ -51,6 +51,12 @@ buildアクションで、MarkdownからHTMLへの変換と、GitHub Pagesへの
20
+ - コード修飾の誤り検出 (code qualify checkアクション)
21
+ - コードブロック中のコードを修飾しているのに、その修飾対象がない場合に、エラーが発生する
22
+ - [GitHub Actionsの実行ログ](https://github.com/cpprefjp/site/actions/workflows/code_qualify_check.yml)で、どのページのどのコード修飾が不正かがわかるので、それを修正すること
23
+ +- 所属ヘッダメタ情報の誤り検出 (meta header checkアクション)
24
+ + - `[meta header]`または`[meta module]`指定が誤っている(ディレクトリ階層と一致しない)場合に、エラーが発生する
25
+ + - 導入経緯は [PR#1204](https://github.com/cpprefjp/site/issues/1204) を参照
26
+ +- NGワードの検出 (ngword checkアクション)
27
+ + - 日本語入力環境における典型的な誤入力・誤変換をエラーとして検知する
28
+ + - 具体的な対象ワードリストは[ngword_check.py](https://github.com/cpprefjp/site/blob/master/.github/workflows/script/ngword_check.py)を参照
29
+
30
+
31
+ ### 自動反映ツール
32
+ < /code>< /pre> </summary >
33
+
34
+ <author >
35
+ <name >yoh</name >
36
+
37
+ </author >
38
+ </entry >
39
+
9
40
<entry >
10
41
<title >INVOKE -- fix typo</title >
11
42
<link href =" https://cpprefjp.github.io/reference/concepts/Invoke.html" />
@@ -270,96 +301,4 @@ index f0a1d8bce..5cddc1bad 100644
270
301
</author >
271
302
</entry >
272
303
273
- <entry >
274
- <title >insert -- unorderedのinsert : hintの活用についてのMicrosoftの記事を参照に追加</title >
275
- <link href =" https://cpprefjp.github.io/reference/unordered_map/unordered_map/insert.html" />
276
- <id >19bc6aeae5911beec14833e57b007a067f2b424b:reference/unordered_map/unordered_map/insert.md</id >
277
- <updated >2024-11-01T11:26:03+09:00</updated >
278
-
279
- <summary type =" html" >< pre>< code> diff --git a/reference/unordered_map/unordered_map/insert.md b/reference/unordered_map/unordered_map/insert.md
280
- index 6b0e903f3..4eec85b02 100644
281
- --- a/reference/unordered_map/unordered_map/insert.md
282
- +++ b/reference/unordered_map/unordered_map/insert.md
283
- @@ -314,3 +314,4 @@ inline void unordered_map& lt;Key, Hash, Pred, Allocator& gt;::insert(initializer_list& lt;K
284
- - [LWG Issue 2156. Unordered containers& #39; reserve(n) reserves for n-1 elements](https://wg21.cmeerw.net/lwg/issue2156)
285
- - [Splicing Maps and Sets(Revision 5)](http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2016/p0083r3.pdf)
286
- - (9), (10)経緯となる提案文書
287
- +- [How useful is the hint passed to the std::unordered_... collections? - The Old New Thing](https://devblogs.microsoft.com/oldnewthing/20241028-00/?p=110428)
288
- < /code>< /pre> </summary >
289
-
290
- <author >
291
- <name >Akira Takahashi</name >
292
-
293
- </author >
294
- </entry >
295
-
296
- <entry >
297
- <title >insert -- unorderedのinsert : hintの活用についてのMicrosoftの記事を参照に追加</title >
298
- <link href =" https://cpprefjp.github.io/reference/unordered_map/unordered_multimap/insert.html" />
299
- <id >19bc6aeae5911beec14833e57b007a067f2b424b:reference/unordered_map/unordered_multimap/insert.md</id >
300
- <updated >2024-11-01T11:26:03+09:00</updated >
301
-
302
- <summary type =" html" >< pre>< code> diff --git a/reference/unordered_map/unordered_multimap/insert.md b/reference/unordered_map/unordered_multimap/insert.md
303
- index 49b058d6e..209d4ca8a 100644
304
- --- a/reference/unordered_map/unordered_multimap/insert.md
305
- +++ b/reference/unordered_map/unordered_multimap/insert.md
306
- @@ -305,3 +305,4 @@ inline void unordered_multimap& lt;Key, Hash, Pred, Allocator& gt;::insert(initializer_l
307
- - [LWG Issue 2156. Unordered containers& #39; reserve(n) reserves for n-1 elements](https://wg21.cmeerw.net/lwg/issue2156)
308
- - [Splicing Maps and Sets(Revision 5)](http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2016/p0083r3.pdf)
309
- - (9), (10)経緯となる提案文書
310
- +- [How useful is the hint passed to the std::unordered_... collections? - The Old New Thing](https://devblogs.microsoft.com/oldnewthing/20241028-00/?p=110428)
311
- < /code>< /pre> </summary >
312
-
313
- <author >
314
- <name >Akira Takahashi</name >
315
-
316
- </author >
317
- </entry >
318
-
319
- <entry >
320
- <title >insert -- unorderedのinsert : hintの活用についてのMicrosoftの記事を参照に追加</title >
321
- <link href =" https://cpprefjp.github.io/reference/unordered_set/unordered_multiset/insert.html" />
322
- <id >19bc6aeae5911beec14833e57b007a067f2b424b:reference/unordered_set/unordered_multiset/insert.md</id >
323
- <updated >2024-11-01T11:26:03+09:00</updated >
324
-
325
- <summary type =" html" >< pre>< code> diff --git a/reference/unordered_set/unordered_multiset/insert.md b/reference/unordered_set/unordered_multiset/insert.md
326
- index 8731400d7..918f905b2 100644
327
- --- a/reference/unordered_set/unordered_multiset/insert.md
328
- +++ b/reference/unordered_set/unordered_multiset/insert.md
329
- @@ -245,3 +245,4 @@ inline void unordered_multiset& lt;Key, Hash, Pred, Allocator& gt;::insert(std::initiali
330
- - 安定性の保証が規定された経緯のレポート
331
- - [Splicing Maps and Sets(Revision 5)](http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2016/p0083r3.pdf)
332
- - (5), (6)経緯となる提案文書
333
- +- [How useful is the hint passed to the std::unordered_... collections? - The Old New Thing](https://devblogs.microsoft.com/oldnewthing/20241028-00/?p=110428)
334
- < /code>< /pre> </summary >
335
-
336
- <author >
337
- <name >Akira Takahashi</name >
338
-
339
- </author >
340
- </entry >
341
-
342
- <entry >
343
- <title >insert -- unorderedのinsert : hintの活用についてのMicrosoftの記事を参照に追加</title >
344
- <link href =" https://cpprefjp.github.io/reference/unordered_set/unordered_set/insert.html" />
345
- <id >19bc6aeae5911beec14833e57b007a067f2b424b:reference/unordered_set/unordered_set/insert.md</id >
346
- <updated >2024-11-01T11:26:03+09:00</updated >
347
-
348
- <summary type =" html" >< pre>< code> diff --git a/reference/unordered_set/unordered_set/insert.md b/reference/unordered_set/unordered_set/insert.md
349
- index e6779f65a..c6eb0e16e 100644
350
- --- a/reference/unordered_set/unordered_set/insert.md
351
- +++ b/reference/unordered_set/unordered_set/insert.md
352
- @@ -260,3 +260,4 @@ inline void unordered_set& lt;Key, Hash, Pred, Allocator& gt;::insert(initializer_list& lt;K
353
- - (4)の経緯となる提案文書
354
- - [Splicing Maps and Sets(Revision 5)](http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2016/p0083r3.pdf)
355
- - (5), (6)経緯となる提案文書
356
- +- [How useful is the hint passed to the std::unordered_... collections? - The Old New Thing](https://devblogs.microsoft.com/oldnewthing/20241028-00/?p=110428)
357
- < /code>< /pre> </summary >
358
-
359
- <author >
360
- <name >Akira Takahashi</name >
361
-
362
- </author >
363
- </entry >
364
-
365
304
</feed >
0 commit comments