Skip to content

Commit 9b4a135

Browse files
author
cpprefjp-autoupdate
committed
update automatically
1 parent eb4d735 commit 9b4a135

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

50 files changed

+12085
-745
lines changed

implementation-status.html

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

165165
<p class="text-right"><small>
166166
最終更新日時(UTC):
167-
<span itemprop="datePublished" content="2025-03-26T09:39:56">
168-
2025年03月26日 09時39分56秒
167+
<span itemprop="datePublished" content="2025-04-03T07:03:23">
168+
2025年04月03日 07時03分23秒
169169
</span>
170170
<br/>
171171
<span itemprop="author" itemscope itemtype="http://schema.org/Person">
@@ -1999,7 +1999,7 @@ <h2><a href="#cpp26" id="cpp26">C++26言語機能の実装状況</a></h2>
19991999
<td></td>
20002000
</tr>
20012001
<tr>
2002-
<td>P3068R6: <span href="https://cpprefjp.github.io/lang/cpp26/allowing_exception_throwing_in_constant-evaluation.md.nolink">定数評価での例外送出を許可</span></td>
2002+
<td>P3068R6: <a href="lang/cpp26/allowing_exception_throwing_in_constant-evaluation.html">定数評価での例外送出を許可</a></td>
20032003
<td>定数式の文脈での<a class="cpprefjp-defined-word" data-desc="問題が発生したときに、現在実行位置を過去に通過・記録した位置に戻し、文脈情報を添えて紐づけられた処理(例外ハンドラー)を呼び出す仕組み。またはその事態">例外</a>の送出と捕捉を許可</td>
20042004
<td></td>
20052005
<td></td>

lang/cpp11/constexpr.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-04-03T07:03:23">
192+
2025年04月03日 07時03分23秒
193193
</span>
194194
<br/>
195195
<span itemprop="author" itemscope itemtype="http://schema.org/Person">
@@ -386,6 +386,7 @@ <h2><a href="#relative-page" id="relative-page">関連項目</a></h2>
386386
<li><a href="../cpp23/relaxing_some_constexpr_restrictions.html">C++23 <code>constexpr</code>関数が定数実行できない場合でも適格とする</a></li>
387387
<li><a href="../cpp23/permitting_static_constexpr_variables_in_constexpr_functions.html">C++23 <code>constexpr</code>関数内での<code>static constexpr</code>変数を許可</a></li>
388388
<li><a href="../cpp23/consteval_needs_to_propagate_up.html">C++23 <code>constexpr</code>関数内で<code>consteval</code>関数を呼び出せない問題を軽減</a></li>
389+
<li><a href="../cpp26/allowing_exception_throwing_in_constant-evaluation.html">C++26 定数評価での例外送出を許可</a></li>
389390
</ul>
390391
<h2>参照</h2>
391392
<ul>

lang/cpp26.html

Lines changed: 20 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -176,8 +176,8 @@
176176

177177
<p class="text-right"><small>
178178
最終更新日時(UTC):
179-
<span itemprop="datePublished" content="2025-03-26T11:31:18">
180-
2025年03月26日 11時31分18秒
179+
<span itemprop="datePublished" content="2025-04-03T07:03:23">
180+
2025年04月03日 07時03分23秒
181181
</span>
182182
<br/>
183183
<span itemprop="author" itemscope itemtype="http://schema.org/Person">
@@ -400,7 +400,7 @@ <h3>定数式</h3>
400400
<td>定数式に対する構造化束縛を許可し、関連する定数式への参照が定数式になるようにする</td>
401401
</tr>
402402
<tr>
403-
<td><span href="https://cpprefjp.github.io/lang/cpp26/allowing_exception_throwing_in_constant-evaluation.md.nolink">定数評価での例外送出を許可</span></td>
403+
<td><a href="cpp26/allowing_exception_throwing_in_constant-evaluation.html">定数評価での例外送出を許可</a></td>
404404
<td>定数式の文脈での<a class="cpprefjp-defined-word" data-desc="問題が発生したときに、現在実行位置を過去に通過・記録した位置に戻し、文脈情報を添えて紐づけられた処理(例外ハンドラー)を呼び出す仕組み。またはその事態">例外</a>の送出と捕捉を許可</td>
405405
</tr>
406406
</tbody>
@@ -815,11 +815,7 @@ <h3>ユーティリティ</h3>
815815
<li><code><a href="../reference/typeinfo/bad_typeid.html">std::bad_typeid</a></code>クラスの<code>what()</code>メンバ関数</li>
816816
</ul>
817817
</li>
818-
</ul>
819-
</li>
820-
<li><code><a href="../reference/memory.html">&lt;memory&gt;</a></code>に、ポインタのアライメントを判定する<code><a href="../reference/memory/is_sufficiently_aligned.html">std::is_sufficiently_aligned()</a></code>関数を追加。</li>
821-
<li><code><a href="../reference/utility.html">&lt;utility&gt;</a></code>に、タイムトラベル最適化を抑止するための観測可能ポイントとして<code><span href="https://cpprefjp.github.io/reference/utility/observable.md.nolink">std::observable()</span></code>を追加</li>
822-
<li>以下の<a class="cpprefjp-defined-word" data-desc="問題が発生したときに、現在実行位置を過去に通過・記録した位置に戻し、文脈情報を添えて紐づけられた処理(例外ハンドラー)を呼び出す仕組み。またはその事態">例外</a>型を<code>constexpr</code>対応<ul>
818+
<li><code><a href="../reference/stdexcept.html">&lt;stdexcept&gt;</a></code>ヘッダの以下の機能<ul>
823819
<li><code><a href="../reference/stdexcept.html">std::domain_error</a></code></li>
824820
<li><code><a href="../reference/stdexcept.html">std::invalid_argument</a></code></li>
825821
<li><code><a href="../reference/stdexcept.html">std::length_error</a></code></li>
@@ -829,13 +825,29 @@ <h3>ユーティリティ</h3>
829825
<li><code><a href="../reference/stdexcept.html">std::range_error</a></code></li>
830826
<li><code><a href="../reference/stdexcept.html">std::overflow_error</a></code></li>
831827
<li><code><a href="../reference/stdexcept.html">std::underflow_error</a></code></li>
828+
</ul>
829+
</li>
830+
<li><code><a href="../reference/expected.html">&lt;expected&gt;</a></code>ヘッダの以下の機能<ul>
832831
<li><code><a href="../reference/expected/bad_expected_access.html">std::bad_expected_access</a></code></li>
832+
</ul>
833+
</li>
834+
<li><code><a href="../reference/optional.html">&lt;optional&gt;</a></code>ヘッダの以下の機能<ul>
833835
<li><code><a href="../reference/optional/bad_optional_access.html">std::bad_optional_access</a></code></li>
836+
</ul>
837+
</li>
838+
<li><code><a href="../reference/variant.html">&lt;variant&gt;</a></code>ヘッダの以下の機能<ul>
834839
<li><code><a href="../reference/variant/bad_variant_access.html">std::bad_variant_access</a></code></li>
840+
</ul>
841+
</li>
842+
<li><code><a href="../reference/format.html">&lt;format&gt;</a></code>ヘッダの以下の機能<ul>
835843
<li><code><a href="../reference/format/format_error.html">std::format_error</a></code></li>
836844
</ul>
837845
</li>
838846
</ul>
847+
</li>
848+
<li><code><a href="../reference/memory.html">&lt;memory&gt;</a></code>に、ポインタのアライメントを判定する<code><a href="../reference/memory/is_sufficiently_aligned.html">std::is_sufficiently_aligned()</a></code>関数を追加。</li>
849+
<li><code><a href="../reference/utility.html">&lt;utility&gt;</a></code>に、タイムトラベル最適化を抑止するための観測可能ポイントとして<code><span href="https://cpprefjp.github.io/reference/utility/observable.md.nolink">std::observable()</span></code>を追加</li>
850+
</ul>
839851
<h3>デバッグ</h3>
840852
<ul>
841853
<li><code><a href="../reference/cassert/assert.html">assert</a></code>マクロの引数としてカンマを含む式を指定できるよう、可変引数化</li>

0 commit comments

Comments
 (0)