Skip to content

Commit 2530f83

Browse files
author
cpprefjp-autoupdate
committed
update automatically
1 parent 3e7b065 commit 2530f83

8 files changed

+177
-5117
lines changed

lang/cpp11/auto.html

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

189189
<p class="text-right"><small>
190190
最終更新日時(UTC):
191-
<span itemprop="datePublished" content="2024-12-22T06:27:29">
192-
2024年12月22日 06時27分29秒
191+
<span itemprop="datePublished" content="2025-08-14T04:38:40">
192+
2025年08月14日 04時38分40秒
193193
</span>
194194
<br/>
195195
<span itemprop="author" itemscope itemtype="http://schema.org/Person">
196-
<span itemprop="name">Raclamusi</span>
196+
<span itemprop="name">Akira Takahashi</span>
197197
</span>
198198
が更新
199199
</small></p>
@@ -505,6 +505,7 @@ <h2><a href="#relative-page" id="relative-page">関連項目</a></h2>
505505
<li><a href="../cpp14/decltype_auto.html">C++14 <code>decltype(auto)</code></a></li>
506506
<li><a href="../cpp14/placeholder_type_in_trailing_return_type.html">C++14 後置戻り値型をプレースホルダーにすることを許可</a></li>
507507
<li><a href="../cpp14/return_type_deduction_for_normal_functions.html">C++14 通常関数の戻り値型推論(ユーザ定義変換関数の型推論を含む)</a></li>
508+
<li><a href="../cpp17/new_rules_for_auto_deduction_from_braced-init-list.html">C++17 単一要素の波カッコ初期化を非配列とする</a></li>
508509
</ul>
509510
<h2>参照</h2>
510511
<ul>

lang/cpp17/constexpr_lambda.html

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

189189
<p class="text-right"><small>
190190
最終更新日時(UTC):
191-
<span itemprop="datePublished" content="2025-04-20T05:50:30">
192-
2025年04月20日 05時50分30秒
191+
<span itemprop="datePublished" content="2025-08-14T04:38:40">
192+
2025年08月14日 04時38分40秒
193193
</span>
194194
<br/>
195195
<span itemprop="author" itemscope itemtype="http://schema.org/Person">
196-
<span itemprop="name">tshino</span>
196+
<span itemprop="name">Akira Takahashi</span>
197197
</span>
198198
が更新
199199
</small></p>
@@ -361,6 +361,10 @@ <h2>この機能が必要になった背景・経緯</h2>
361361
<p>ラムダがconstexprでないことによって不要に複雑なコードを書くことは混乱のもとであるとして、C++17にconstexprラムダが提案された。</p>
362362
<h2>検討されたほかの選択肢</h2>
363363
<p>(執筆中)</p>
364+
<h2><a href="#relative-page" id="relative-page">関連項目</a></h2>
365+
<ul>
366+
<li><a href="../cpp11/constexpr.html">C++11 <code>constexpr</code></a></li>
367+
</ul>
364368
<h2>参照</h2>
365369
<p>(執筆中)</p>
366370
<ul>

lang/cpp17/new_rules_for_auto_deduction_from_braced-init-list.html

Lines changed: 3 additions & 2 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-10T07:47:57">
192-
2024年07月10日 07時47分57秒
191+
<span itemprop="datePublished" content="2025-08-14T04:38:40">
192+
2025年08月14日 04時38分40秒
193193
</span>
194194
<br/>
195195
<span itemprop="author" itemscope itemtype="http://schema.org/Person">
@@ -303,6 +303,7 @@ <h2>検討されたほかの選択肢</h2>
303303
が提案されたが採用されなかった。</p>
304304
<h2><a href="#relative-page" id="relative-page">関連項目</a></h2>
305305
<ul>
306+
<li><a href="../cpp11/auto.html">C++11 変数の型推論のための<code>auto</code></a></li>
306307
<li><a href="../cpp11/initializer_lists.html">C++11 初期化リスト</a></li>
307308
</ul>
308309
<h2>参照</h2>

lang/cpp20/try-catch_blocks_in_constexpr_functions.html

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

189189
<p class="text-right"><small>
190190
最終更新日時(UTC):
191-
<span itemprop="datePublished" content="2025-07-10T01:26:30">
192-
2025年07月10日 01時26分30秒
191+
<span itemprop="datePublished" content="2025-08-14T04:38:40">
192+
2025年08月14日 04時38分40秒
193193
</span>
194194
<br/>
195195
<span itemprop="author" itemscope itemtype="http://schema.org/Person">
196-
<span itemprop="name">Koichi Murase</span>
196+
<span itemprop="name">Akira Takahashi</span>
197197
</span>
198198
が更新
199199
</small></p>
@@ -234,6 +234,7 @@ <h2>この機能が必要になった背景・経緯</h2>
234234
<p>この機能が必要になったのは、リフレクションとメタプログラミングのためである。コンパイル時定数として<code><a href="../../reference/vector/vector.html">std::vector</a></code>を使用できるようにするためには、try-catchブロックを許可することが必要であった。libc++での<code><a href="../../reference/vector/vector/insert.html">vector::insert()</a></code>の実装において、try-catchブロックを使用して強い<a class="cpprefjp-defined-word" data-desc="問題が発生したときに、現在実行位置を過去に通過・記録した位置に戻し、文脈情報を添えて紐づけられた処理(例外ハンドラー)を呼び出す仕組み。またはその事態">例外</a>安全性の保証を提供している。</p>
235235
<h2><a href="#relative-page" id="relative-page">関連項目</a></h2>
236236
<ul>
237+
<li><a href="../cpp11/constexpr.html">C++11 <code>constexpr</code></a></li>
237238
<li><a href="more_constexpr_containers.html">C++20 可変サイズをもつコンテナの<code>constexpr</code></a></li>
238239
</ul>
239240
<h2>参照</h2>

lang/cpp23/relaxing_some_constexpr_restrictions.html

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -188,12 +188,12 @@
188188

189189
<p class="text-right"><small>
190190
最終更新日時(UTC):
191-
<span itemprop="datePublished" content="2024-11-07T12:21:16">
192-
2024年11月07日 12時21分16秒
191+
<span itemprop="datePublished" content="2025-08-14T04:38:40">
192+
2025年08月14日 04時38分40秒
193193
</span>
194194
<br/>
195195
<span itemprop="author" itemscope itemtype="http://schema.org/Person">
196-
<span itemprop="name">Koichi Murase</span>
196+
<span itemprop="name">Akira Takahashi</span>
197197
</span>
198198
が更新
199199
</small></p>
@@ -298,8 +298,9 @@ <h2>仕様</h2>
298298
<code>constexpr-suitable</code>とは、コルーチン関数ではなく、仮想基底クラスを持つクラスのコンストラクタまたはデストラクタでもない関数を指す。</p>
299299
<h2><a href="#relative-page" id="relative-page">関連項目</a></h2>
300300
<ul>
301-
<li><a href="../cpp20/try-catch_blocks_in_constexpr_functions.html">C++20 - constexpr関数内でのtry-catchブロックを許可</a></li>
302-
<li><a href="../cpp20/enabling_constexpr_intrinsics_by_permitting_unevaluated_inline-assembly_in_constexpr_functions.html">C++20 - constexpr関数内で未評価のインラインアセンブリを許可することによる組み込み関数のconstexpr有効化</a></li>
301+
<li><a href="../cpp11/constexpr.html">C++11 <code>constexpr</code></a></li>
302+
<li><a href="../cpp20/try-catch_blocks_in_constexpr_functions.html">C++20 <code>constexpr</code>関数内での<code>try-catch</code>ブロックを許可</a></li>
303+
<li><a href="../cpp20/enabling_constexpr_intrinsics_by_permitting_unevaluated_inline-assembly_in_constexpr_functions.html">C++20 <code>constexpr</code>関数内で未評価のインラインアセンブリを許可することによる組み込み関数の<code>constexpr</code>有効化</a></li>
303304
</ul>
304305
<h2>参照</h2>
305306
<ul>

lang/cpp26/user-generated_static_assert_messages.html

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

189189
<p class="text-right"><small>
190190
最終更新日時(UTC):
191-
<span itemprop="datePublished" content="2025-07-10T01:26:30">
192-
2025年07月10日 01時26分30秒
191+
<span itemprop="datePublished" content="2025-08-14T04:38:40">
192+
2025年08月14日 04時38分40秒
193193
</span>
194194
<br/>
195195
<span itemprop="author" itemscope itemtype="http://schema.org/Person">
196-
<span itemprop="name">Koichi Murase</span>
196+
<span itemprop="name">Akira Takahashi</span>
197197
</span>
198198
が更新
199199
</small></p>
@@ -256,6 +256,7 @@ <h2>仕様</h2>
256256
<h2><a href="#relative-page" id="relative-page">関連項目</a></h2>
257257
<ul>
258258
<li><a href="../cpp11/static_assert.html">C++11 コンパイル時アサート</a></li>
259+
<li><a href="../cpp17/extending_static_assert.html">C++17 <code>static_assert</code>のメッセージ省略を許可</a></li>
259260
</ul>
260261
<h2>参照</h2>
261262
<ul>

0 commit comments

Comments
 (0)