Skip to content

Commit 7984575

Browse files
author
cpprefjp-autoupdate
committed
update automatically
1 parent 6473040 commit 7984575

File tree

8 files changed

+11858
-9503
lines changed

8 files changed

+11858
-9503
lines changed

lang/cpp26.html

Lines changed: 3 additions & 3 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="2026-03-24T04:23:43">
180-
2026年03月24日 04時23分43秒
179+
<span itemprop="datePublished" content="2026-03-27T03:03:35">
180+
2026年03月27日 03時03分35秒
181181
</span>
182182
<br/>
183183
<span itemprop="author" itemscope itemtype="http://schema.org/Person">
@@ -976,7 +976,7 @@ <h3>ユーティリティ</h3>
976976
</ul>
977977
</li>
978978
<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>
979-
<li><code><a href="../reference/utility.html">&lt;utility&gt;</a></code>に、タイムトラベル最適化を抑止するための観測可能ポイントとして<code><span href="https://cpprefjp.github.io/reference/utility/observable_checkpoint.md.nolink">std::observable_checkpoint()</span></code>を追加</li>
979+
<li><code><a href="../reference/utility.html">&lt;utility&gt;</a></code>に、タイムトラベル最適化を抑止するための観測可能ポイントとして<code><a href="../reference/utility/observable_checkpoint.html">std::observable_checkpoint()</a></code>を追加</li>
980980
<li><code><a href="../reference/exception/exception_ptr.html">std::exception_ptr</a></code>を指定した<a class="cpprefjp-defined-word" data-desc="問題が発生したときに、現在実行位置を過去に通過・記録した位置に戻し、文脈情報を添えて紐づけられた処理(例外ハンドラー)を呼び出す仕組み。またはその事態">例外</a>型にキャストする<code><a href="../reference/exception/exception_ptr_cast.html">std::exception_ptr_cast()</a></code>関数を追加</li>
981981
<li><code><a href="../reference/compare.html">&lt;compare&gt;</a></code>に、型の順序を取得する<code><span href="https://cpprefjp.github.io/reference/compare/type_order.md.nolink">std::type_order</span></code>クラスを追加</li>
982982
</ul>

lang/cpp26/feature_test_macros.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="2026-03-24T04:23:43">
192-
2026年03月24日 04時23分43秒
191+
<span itemprop="datePublished" content="2026-03-27T03:03:35">
192+
2026年03月27日 03時03分35秒
193193
</span>
194194
<br/>
195195
<span itemprop="author" itemscope itemtype="http://schema.org/Person">
@@ -793,7 +793,7 @@ <h3>ライブラリ</h3>
793793
<tr>
794794
<td><code>__cpp_lib_observable_checkpoint</code></td>
795795
<td><code>202506L</code></td>
796-
<td><code><a href="../../reference/utility.html">&lt;utility&gt;</a></code><code><span href="https://cpprefjp.github.io/reference/utility/observable_checkpoint.md.nolink">std::observable_checkpoint()</span></code>を追加</td>
796+
<td><code><a href="../../reference/utility.html">&lt;utility&gt;</a></code><code><a href="../../reference/utility/observable_checkpoint.html">std::observable_checkpoint()</a></code>を追加</td>
797797
<td><code><a href="../../reference/utility.html">&lt;utility&gt;</a></code></td>
798798
</tr>
799799
<tr>

reference/utility.html

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -176,12 +176,12 @@
176176

177177
<p class="text-right"><small>
178178
最終更新日時(UTC):
179-
<span itemprop="datePublished" content="2026-02-11T06:05:02">
180-
2026年02月11日 06時05分02秒
179+
<span itemprop="datePublished" content="2026-03-27T03:03:35">
180+
2026年03月27日 03時03分35秒
181181
</span>
182182
<br/>
183183
<span itemprop="author" itemscope itemtype="http://schema.org/Person">
184-
<span itemprop="name">yoh</span>
184+
<span itemprop="name">Akira Takahashi</span>
185185
</span>
186186
が更新
187187
</small></p>
@@ -376,7 +376,7 @@ <h2>列挙型</h2>
376376
</tr>
377377
</tbody>
378378
</table>
379-
<h2>到達しない表明</h2>
379+
<h2><a class="cpprefjp-defined-word" data-desc="未定義の動作。処理系は予期せぬ動作をする可能性がある。要するに動作保証対象外。undefined behavior (UB)。" href="../implementation-compliance.html#dfn-undefined-behavior">未定義動作</a></h2>
380380
<table border="1" bordercolor="#888" style="border-collapse:collapse">
381381
<thead>
382382
<tr>
@@ -391,6 +391,11 @@ <h2>到達しない表明</h2>
391391
<td>コードパス不到達を表明する (function)</td>
392392
<td>C++23</td>
393393
</tr>
394+
<tr>
395+
<td><code><a href="utility/observable_checkpoint.html">observable_checkpoint</a></code></td>
396+
<td>観測可能チェックポイントを設置する (function)</td>
397+
<td>C++26</td>
398+
</tr>
394399
</tbody>
395400
</table>
396401
<h2></h2>

reference/utility/observable_checkpoint.html

Lines changed: 366 additions & 0 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)