File tree Expand file tree Collapse file tree 11 files changed +4401
-206
lines changed
Expand file tree Collapse file tree 11 files changed +4401
-206
lines changed Original file line number Diff line number Diff line change 164164
165165 < p class ="text-right "> < small >
166166 最終更新日時(UTC):
167- < span itemprop ="datePublished " content ="2026-04-06T05:09:24 ">
168- 2026年04月06日 05時09分24秒
167+ < span itemprop ="datePublished " content ="2026-04-06T09:01:01 ">
168+ 2026年04月06日 09時01分01秒
169169 </ span >
170170 < br />
171171 < span itemprop ="author " itemscope itemtype ="http://schema.org/Person ">
@@ -2034,8 +2034,8 @@ <h2><a href="#cpp26" id="cpp26">C++26言語機能の実装状況</a></h2>
20342034< td > </ td >
20352035</ tr >
20362036< tr >
2037- < td > P3074R7: < span href ="https://cpprefjp.github.io/ lang/cpp26/trivial_unions.md.nolink " > 共用体をトリビアルに未初期化できるようにする </ span > </ td >
2038- < td > < code > constexpr </ code > での < code > union U { T storage[N]; }; </ code > を許可し、未初期化にできるようにする </ td >
2037+ < td > P3074R7: < a href ="lang/cpp26/trivial_unions.html " > 共用体の特殊メンバ関数のトリビアル化 </ a > </ td >
2038+ < td > 非トリビアルな型をメンバにもつ共用体のデフォルトコンストラクタとデストラクタをトリビアルにし、未初期化ストレージとして使用可能にする </ td >
20392039< td > </ td >
20402040< td > </ td >
20412041< td > </ td >
Original file line number Diff line number Diff line change 188188
189189 < p class ="text-right "> < small >
190190 最終更新日時(UTC):
191- < span itemprop ="datePublished " content ="2026-04-06T05:09:24 ">
192- 2026年04月06日 05時09分24秒
191+ < span itemprop ="datePublished " content ="2026-04-06T09:01:01 ">
192+ 2026年04月06日 09時01分01秒
193193 </ span >
194194 < br />
195195 < span itemprop ="author " itemscope itemtype ="http://schema.org/Person ">
@@ -391,6 +391,7 @@ <h2><a href="#relative-page" id="relative-page">関連項目</a></h2>
391391< li > < a href ="../cpp26/constexpr_placement_new.html "> C++26 < code > constexpr</ code > 配置< code > new</ code > </ a > </ li >
392392< li > < a href ="../cpp26/constexpr_structured_bindings_and_references_to_constexpr_variables.html "> C++26 < code > constexpr</ code > 構造化束縛の許可と、< code > constexpr</ code > 参照の制限緩和</ a > </ li >
393393< li > < a href ="../cpp26/constexpr_virtual_inheritance.html "> C++26 < code > constexpr</ code > 仮想継承を許可</ a > </ li >
394+ < li > < a href ="../cpp26/trivial_unions.html "> C++26 共用体の特殊メンバ関数のトリビアル化</ a > </ li >
394395< li > < a href ="../cpp26/unevaluated_strings.html "> C++26 コンパイル時にのみ使用される文字列の扱いを明確化</ a > </ li >
395396</ ul >
396397< h2 > 参照</ h2 >
Original file line number Diff line number Diff line change 176176
177177 < p class ="text-right "> < small >
178178 最終更新日時(UTC):
179- < span itemprop ="datePublished " content ="2026-04-06T05:09:24 ">
180- 2026年04月06日 05時09分24秒
179+ < span itemprop ="datePublished " content ="2026-04-06T09:01:01 ">
180+ 2026年04月06日 09時01分01秒
181181 </ span >
182182 < br />
183183 < span itemprop ="author " itemscope itemtype ="http://schema.org/Person ">
@@ -311,8 +311,8 @@ <h3>クラス</h3>
311311</ thead >
312312< tbody >
313313< tr >
314- < td > < span href ="https://cpprefjp.github.io/lang/ cpp26/trivial_unions.md.nolink " > 共用体をトリビアルに未初期化できるようにする </ span > </ td >
315- < td > < code > constexpr </ code > での < code > union U { T storage[N]; }; </ code > を許可し、未初期化にできるようにする </ td >
314+ < td > < a href ="cpp26/trivial_unions.html " > 共用体の特殊メンバ関数のトリビアル化 </ a > </ td >
315+ < td > 非トリビアルな型をメンバにもつ共用体のデフォルトコンストラクタとデストラクタをトリビアルにし、未初期化ストレージとして使用可能にする </ td >
316316</ tr >
317317</ tbody >
318318</ table >
Original file line number Diff line number Diff line change 188188
189189 < p class ="text-right "> < small >
190190 最終更新日時(UTC):
191- < span itemprop ="datePublished " content ="2025-05-12T14:04:50 ">
192- 2025年05月12日 14時04分50秒
191+ < span itemprop ="datePublished " content ="2026-04-06T09:01:01 ">
192+ 2026年04月06日 09時01分01秒
193193 </ span >
194194 < br />
195195 < span itemprop ="author " itemscope itemtype ="http://schema.org/Person ">
@@ -263,6 +263,7 @@ <h2>概要</h2>
263263< h2 > < a href ="#relative-page " id ="relative-page "> 関連項目</ a > </ h2 >
264264< ul >
265265< li > < a href ="../cpp11/constexpr.html "> C++11 constexpr</ a > </ li >
266+ < li > < a href ="trivial_unions.html "> C++26 共用体の特殊メンバ関数のトリビアル化</ a > </ li >
266267< li > < a href ="../../reference/new/op_new.html "> < code > new</ code > 演算子</ a > </ li >
267268< li > < a href ="../../reference/new/op_new[].html "> < code > new[]</ code > 演算子</ a > </ li >
268269</ ul >
Original file line number Diff line number Diff line change 188188
189189 < p class ="text-right "> < small >
190190 最終更新日時(UTC):
191- < span itemprop ="datePublished " content ="2026-03-30T09:31:10 ">
192- 2026年03月30日 09時31分10秒
191+ < span itemprop ="datePublished " content ="2026-04-06T09:01:01 ">
192+ 2026年04月06日 09時01分01秒
193193 </ span >
194194 < br />
195195 < span itemprop ="author " itemscope itemtype ="http://schema.org/Person ">
@@ -301,7 +301,7 @@ <h3>言語機能</h3>
301301< tr >
302302< td > < code > __cpp_trivial_union</ code > </ td >
303303< td > < code > 202502L</ code > </ td >
304- < td > 共用体をトリビアルに未初期化できるようにする </ td >
304+ < td > < a href =" trivial_unions.html " > 共用体の特殊メンバ関数のトリビアル化 </ a > </ td >
305305</ tr >
306306< tr >
307307< td > < code > __cpp_variadic_friend</ code > </ td >
You can’t perform that action at this time.
0 commit comments