Skip to content

Commit f2f71d3

Browse files
author
cpprefjp-autoupdate
committed
update automatically
1 parent 5b5254d commit f2f71d3

File tree

4 files changed

+66
-83
lines changed

4 files changed

+66
-83
lines changed

lang/cpp11/recursive_template_limit.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -188,8 +188,8 @@
188188

189189
<p class="text-right"><small>
190190
最終更新日時(UTC):
191-
<span itemprop="datePublished" content="2024-07-08T07:33:21">
192-
2024年07月08日 07時33分21秒
191+
<span itemprop="datePublished" content="2024-11-17T14:59:26">
192+
2024年11月17日 14時59分26秒
193193
</span>
194194
<br/>
195195
<span itemprop="author" itemscope itemtype="http://schema.org/Person">
@@ -263,7 +263,7 @@ <h2>参照</h2>
263263
</ul>
264264
</li>
265265
<li><a href="http://clang.llvm.org/docs/UsersManual.html#cmdoption-ftemplate-depth" target="_blank">C++ Language Features/Controlling implementation limits - Clang Compiler User’s Manual</a></li>
266-
<li><a href="https://gcc.gnu.org/onlinedocs/gcc/gcc-command-options/options-controlling-c%2B%2B-dialect.html" target="_blank">3.5 Options Controlling C++ Dialect - GCC Command Options</a></li>
266+
<li><a href="https://gcc.gnu.org/onlinedocs/gcc/C_002b_002b-Dialect-Options.html" target="_blank">3.5 Options Controlling C++ Dialect - GCC Command Options</a></li>
267267
</ul></div>
268268

269269
</div>

lang/cpp20/likely_and_unlikely_attributes.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -188,8 +188,8 @@
188188

189189
<p class="text-right"><small>
190190
最終更新日時(UTC):
191-
<span itemprop="datePublished" content="2024-07-08T07:33:21">
192-
2024年07月08日 07時33分21秒
191+
<span itemprop="datePublished" content="2024-11-17T14:59:26">
192+
2024年11月17日 14時59分26秒
193193
</span>
194194
<br/>
195195
<span itemprop="author" itemscope itemtype="http://schema.org/Person">
@@ -274,8 +274,8 @@ <h2><a href="#relative-page" id="relative-page">関連項目</a></h2>
274274
<h2>参照</h2>
275275
<ul>
276276
<li><a href="https://stackoverflow.com/questions/109710/" target="_blank">How do the likely/unlikely macros in the Linux kernel work and what is their benefit? - Stack Overflow</a></li>
277-
<li><a href="https://gcc.gnu.org/onlinedocs/gcc/extensions-to-the-c-language-family/other-built-in-functions-provided-by-gcc.html" target="_blank">GCC __builtin_expect組み込み関数</a></li>
278-
<li><a href="https://llvm.org/docs/BranchWeightMetadata.html" target="_blank">Clang __builtin_expect組み込み関数</a></li>
277+
<li><a href="https://gcc.gnu.org/onlinedocs/gcc/Other-Builtins.html" target="_blank">GCC <code>__builtin_expect</code>組み込み関数</a></li>
278+
<li><a href="https://llvm.org/docs/BranchWeightMetadata.html" target="_blank">Clang <code>__builtin_expect</code>組み込み関数</a></li>
279279
<li><a href="http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2017/p0479r2.html" target="_blank">P0479R2 Attributes for Likely and Unlikely Statements (Revision 2)</a></li>
280280
<li><a href="http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2018/p0479r5.html" target="_blank">P0479R5 Proposed wording for likely and unlikely attributes (Revision 5)</a></li>
281281
</ul></div>

rss.xml

Lines changed: 57 additions & 74 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,65 @@
22
<feed xmlns="http://www.w3.org/2005/Atom">
33
<title>cpprefjp - C++日本語リファレンス</title>
44
<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>
77

88

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">&lt;pre&gt;&lt;code&gt;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+
&lt;/code&gt;&lt;/pre&gt;</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">&lt;pre&gt;&lt;code&gt;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+
&lt;/code&gt;&lt;/pre&gt;</summary>
57+
58+
<author>
59+
<name>Akira Takahashi</name>
60+
<email>faithandbrave@gmail.com</email>
61+
</author>
62+
</entry>
63+
964
<entry>
1065
<title>はじめてのコントリビュート -- Markdownの記法として箇条書きのインデントに4スペースが必要であることを記載 #1362</title>
1166
<link href="https://cpprefjp.github.io/start_editing.html"/>
@@ -170,76 +225,4 @@ index 2feee22a6..e4f1ee3d6 100644
170225
</author>
171226
</entry>
172227

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">&lt;pre&gt;&lt;code&gt;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-
+## &amp;lt;a id=&amp;#34;relative-page&amp;#34; href=&amp;#34;#relative-page&amp;#34;&amp;gt;関連項目&amp;lt;/a&amp;gt;
189-
- [C++20 `&amp;lt;=&amp;gt;`/`==`による比較演算子の自動定義](consistent_comparison.md)
190-
- [C++26 非推奨となっていた列挙型の算術変換を削除](/lang/cpp26/remove_deprecated_arithmetic_conversion_on_enumerations.md)
191-
192-
193-
## 参照
194-
-- [P1120R0 Consistency improvements for `&amp;lt;=&amp;gt;` and other comparison operators](https://www.open-std.org/jtc1/sc22/wg21/docs/papers/2018/p1120r0.html)
195-
+- [P1120R0 Consistency improvements for `&amp;lt;=&amp;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-
&lt;/code&gt;&lt;/pre&gt;</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">&lt;pre&gt;&lt;code&gt;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-
&amp;lt;!-- start lang caution --&amp;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-
+## &amp;lt;a id=&amp;#34;relative-page&amp;#34; href=&amp;#34;#relative-page&amp;#34;&amp;gt;関連項目&amp;lt;/a&amp;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-
&lt;/code&gt;&lt;/pre&gt;</summary>
238-
239-
<author>
240-
<name>Akira Takahashi</name>
241-
<email>faithandbrave@gmail.com</email>
242-
</author>
243-
</entry>
244-
245228
</feed>

sitemap.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -822,7 +822,7 @@
822822

823823
<url>
824824
<loc>https://cpprefjp.github.io/lang/cpp20/likely_and_unlikely_attributes.html</loc>
825-
<lastmod>2024-08-01T22:40:15+09:00</lastmod>
825+
<lastmod>2024-11-17T23:59:26+09:00</lastmod>
826826
<changefreq>daily</changefreq>
827827
<priority>0.7</priority>
828828
</url>
@@ -1571,7 +1571,7 @@
15711571

15721572
<url>
15731573
<loc>https://cpprefjp.github.io/lang/cpp11/recursive_template_limit.html</loc>
1574-
<lastmod>2024-08-01T22:40:15+09:00</lastmod>
1574+
<lastmod>2024-11-17T23:59:26+09:00</lastmod>
15751575
<changefreq>daily</changefreq>
15761576
<priority>0.7</priority>
15771577
</url>

0 commit comments

Comments
 (0)