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-17T14:40:46.631240 </updated >
6
- <id >daee6e8f-1306-4c6e-96f5-70487b8b5544 </id >
5
+ <updated >2024-11-17T15:02:24.106730 </updated >
6
+ <id >487542e6-b7da-4994-94f8-ef72da475ff7 </id >
7
7
8
8
9
+ <entry >
10
+ <title >テンプレート再帰回数の制限緩和 -- GCC Webサイトのリンク切れを修正 #1363</title >
11
+ <link href =" https://cpprefjp.github.io/lang/cpp11/recursive_template_limit.html" />
12
+ <id >ea0f0c5c90dabb6eca1418d5ab1e4c37bc839f2b:lang/cpp11/recursive_template_limit.md</id >
13
+ <updated >2024-11-17T23:59:26+09:00</updated >
14
+
15
+ <summary type =" html" >< pre>< code> diff --git a/lang/cpp11/recursive_template_limit.md b/lang/cpp11/recursive_template_limit.md
16
+ index e32a1a0fe..84fd2d192 100644
17
+ --- a/lang/cpp11/recursive_template_limit.md
18
+ +++ b/lang/cpp11/recursive_template_limit.md
19
+ @@ -67,4 +67,4 @@ int main()
20
+ - [Variadic Templates for C++0x](https://web.archive.org/web/20230430062038/http://www.jot.fm/issues/issue_2008_02/article2/)
21
+ - テンプレートの再帰によって、コンパイル時間がどれくらい延びるかのレポートがある記事
22
+ - [C++ Language Features/Controlling implementation limits - Clang Compiler User’s Manual](http://clang.llvm.org/docs/UsersManual.html#cmdoption-ftemplate-depth)
23
+ -- [3.5 Options Controlling C++ Dialect - GCC Command Options](https://gcc.gnu.org/onlinedocs/gcc/gcc-command-options/options-controlling-c%2B%2B-dialect.html)
24
+ \ No newline at end of file
25
+ +- [3.5 Options Controlling C++ Dialect - GCC Command Options](https://gcc.gnu.org/onlinedocs/gcc/C_002b_002b-Dialect-Options.html)
26
+ < /code>< /pre> </summary >
27
+
28
+ <author >
29
+ <name >Akira Takahashi</name >
30
+ <email >faithandbrave@gmail.com</email >
31
+ </author >
32
+ </entry >
33
+
34
+ <entry >
35
+ <title >確率が高い分岐と低い分岐を伝える属性 [[likely]], [[unlikely]] [P0479R5] -- GCC Webサイトのリンク切れを修正 #1363</title >
36
+ <link href =" https://cpprefjp.github.io/lang/cpp20/likely_and_unlikely_attributes.html" />
37
+ <id >ea0f0c5c90dabb6eca1418d5ab1e4c37bc839f2b:lang/cpp20/likely_and_unlikely_attributes.md</id >
38
+ <updated >2024-11-17T23:59:26+09:00</updated >
39
+
40
+ <summary type =" html" >< pre>< code> diff --git a/lang/cpp20/likely_and_unlikely_attributes.md b/lang/cpp20/likely_and_unlikely_attributes.md
41
+ index c1b05c11e..9a818d36e 100644
42
+ --- a/lang/cpp20/likely_and_unlikely_attributes.md
43
+ +++ b/lang/cpp20/likely_and_unlikely_attributes.md
44
+ @@ -77,7 +77,7 @@ GCCやClangなど一部C++コンパイラでは独自拡張として同等機能
45
+
46
+ ## 参照
47
+ - [How do the likely/unlikely macros in the Linux kernel work and what is their benefit? - Stack Overflow](https://stackoverflow.com/questions/109710/)
48
+ -- [GCC __builtin_expect組み込み関数](https://gcc.gnu.org/onlinedocs/gcc/extensions-to-the-c-language-family/other-built-in-functions-provided-by-gcc.html)
49
+ -- [Clang __builtin_expect組み込み関数](https://llvm.org/docs/BranchWeightMetadata.html)
50
+ +- [GCC `__builtin_expect`組み込み関数](https://gcc.gnu.org/onlinedocs/gcc/Other-Builtins.html)
51
+ +- [Clang `__builtin_expect`組み込み関数](https://llvm.org/docs/BranchWeightMetadata.html)
52
+ - [P0479R2 Attributes for Likely and Unlikely Statements (Revision 2)](http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2017/p0479r2.html)
53
+ -- [P0479R5 Proposed wording for likely and unlikely attributes (Revision 5)](http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2018/p0479r5.html)
54
+ \ No newline at end of file
55
+ +- [P0479R5 Proposed wording for likely and unlikely attributes (Revision 5)](http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2018/p0479r5.html)
56
+ < /code>< /pre> </summary >
57
+
58
+ <author >
59
+ <name >Akira Takahashi</name >
60
+ <email >faithandbrave@gmail.com</email >
61
+ </author >
62
+ </entry >
63
+
9
64
<entry >
10
65
<title >はじめてのコントリビュート -- Markdownの記法として箇条書きのインデントに4スペースが必要であることを記載 #1362</title >
11
66
<link href =" https://cpprefjp.github.io/start_editing.html" />
@@ -170,76 +225,4 @@ index 2feee22a6..e4f1ee3d6 100644
170
225
</author >
171
226
</entry >
172
227
173
- <entry >
174
- <title >列挙値から算術型への暗黙変換を非推奨化 [P1120R0] -- 言語機能の注意文章を更新 #1231</title >
175
- <link href =" https://cpprefjp.github.io/lang/cpp20/deprecate_arithmetic_conversion_on_enumerations.html" />
176
- <id >165353e4a2df20da05e1208cca403329ea548e63:lang/cpp20/deprecate_arithmetic_conversion_on_enumerations.md</id >
177
- <updated >2024-11-13T12:55:56+09:00</updated >
178
-
179
- <summary type =" html" >< pre>< code> diff --git a/lang/cpp20/deprecate_arithmetic_conversion_on_enumerations.md b/lang/cpp20/deprecate_arithmetic_conversion_on_enumerations.md
180
- index 3b4d60e5d..6d327bb60 100644
181
- --- a/lang/cpp20/deprecate_arithmetic_conversion_on_enumerations.md
182
- +++ b/lang/cpp20/deprecate_arithmetic_conversion_on_enumerations.md
183
- @@ -22,10 +22,10 @@ int x = +f - e; // OK
184
- ```
185
-
186
-
187
- -## 関連項目
188
- +## & lt;a id=& #34;relative-page& #34; href=& #34;#relative-page& #34;& gt;関連項目& lt;/a& gt;
189
- - [C++20 `& lt;=& gt;`/`==`による比較演算子の自動定義](consistent_comparison.md)
190
- - [C++26 非推奨となっていた列挙型の算術変換を削除](/lang/cpp26/remove_deprecated_arithmetic_conversion_on_enumerations.md)
191
-
192
-
193
- ## 参照
194
- -- [P1120R0 Consistency improvements for `& lt;=& gt;` and other comparison operators](https://www.open-std.org/jtc1/sc22/wg21/docs/papers/2018/p1120r0.html)
195
- +- [P1120R0 Consistency improvements for `& lt;=& gt;` and other comparison operators](https://www.open-std.org/jtc1/sc22/wg21/docs/papers/2018/p1120r0.html)
196
- \ No newline at end of file
197
- < /code>< /pre> </summary >
198
-
199
- <author >
200
- <name >Akira Takahashi</name >
201
- <email >faithandbrave@gmail.com</email >
202
- </author >
203
- </entry >
204
-
205
- <entry >
206
- <title >列挙値から算術型への暗黙変換を非推奨化 [P2864R2] -- 言語機能の注意文章を更新 #1231</title >
207
- <link href =" https://cpprefjp.github.io/lang/cpp26/remove_deprecated_arithmetic_conversion_on_enumerations.html" />
208
- <id >165353e4a2df20da05e1208cca403329ea548e63:lang/cpp26/remove_deprecated_arithmetic_conversion_on_enumerations.md</id >
209
- <updated >2024-11-13T12:55:56+09:00</updated >
210
-
211
- <summary type =" html" >< pre>< code> diff --git a/lang/cpp26/remove_deprecated_arithmetic_conversion_on_enumerations.md b/lang/cpp26/remove_deprecated_arithmetic_conversion_on_enumerations.md
212
- index b512f12d4..c44035a45 100644
213
- --- a/lang/cpp26/remove_deprecated_arithmetic_conversion_on_enumerations.md
214
- +++ b/lang/cpp26/remove_deprecated_arithmetic_conversion_on_enumerations.md
215
- @@ -3,7 +3,7 @@
216
-
217
- & lt;!-- start lang caution --& gt;
218
-
219
- -このページはC++20に採用された言語機能の変更を解説しています。
220
- +このページはC++26に採用される見込みの言語機能の変更を解説しています。
221
-
222
- のちのC++規格でさらに変更される場合があるため[関連項目](#relative-page)を参照してください。
223
-
224
- @@ -22,9 +22,9 @@ int x = +f - e; // OK
225
- ```
226
-
227
-
228
- -## 関連項目
229
- +## & lt;a id=& #34;relative-page& #34; href=& #34;#relative-page& #34;& gt;関連項目& lt;/a& gt;
230
- - [C++20 列挙値から算術型への暗黙変換を非推奨化](/lang/cpp20/deprecate_arithmetic_conversion_on_enumerations.md)
231
-
232
-
233
- ## 参照
234
- -- [P2864R2 Remove Deprecated Arithmetic Conversion on Enumerations From C++26](https://open-std.org/jtc1/sc22/wg21/docs/papers/2023/p2864r2.pdf)
235
- +- [P2864R2 Remove Deprecated Arithmetic Conversion on Enumerations From C++26](https://open-std.org/jtc1/sc22/wg21/docs/papers/2023/p2864r2.pdf)
236
- \ No newline at end of file
237
- < /code>< /pre> </summary >
238
-
239
- <author >
240
- <name >Akira Takahashi</name >
241
- <email >faithandbrave@gmail.com</email >
242
- </author >
243
- </entry >
244
-
245
228
</feed >
0 commit comments