diff --git a/lang/cpp11/attributes.md b/lang/cpp11/attributes.md index 1a15b8ba0..b48a93794 100644 --- a/lang/cpp11/attributes.md +++ b/lang/cpp11/attributes.md @@ -170,6 +170,7 @@ C++11で採用されたもの以外で検討された以下の機能は、属性 - [C++20 属性の名前空間を予約](/lang/cpp20/reserving_attribute_namespaces_for_future_use.md) - [C++23 ラムダ式に対する属性](/lang/cpp23/attributes_on_lambda_expressions.md) - [C++26 構造化束縛への属性を許可](/lang/cpp26/attributes_for_structured_bindings.md) +- [C++26 未初期化変数の読み取りをエラー性動作とする (`[[indeterminate]]`属性)](/lang/cpp26/erroneous_behavior_for_uninitialized_reads.md) ## 参照 diff --git a/lang/cpp26/erroneous_behavior_for_uninitialized_reads.md b/lang/cpp26/erroneous_behavior_for_uninitialized_reads.md index 79b80c7ac..4f118a77d 100644 --- a/lang/cpp26/erroneous_behavior_for_uninitialized_reads.md +++ b/lang/cpp26/erroneous_behavior_for_uninitialized_reads.md @@ -137,5 +137,8 @@ int main() { | 契約違反 | 契約に関する現在の策定作業では、契約違反時になにが起こるべきかという問題に直面している。エラー性動作という概念は有用な回答を与えてくれる可能性がある | +## 関連項目 +- [C++11 属性構文](/lang/cpp11/attributes.md) + ## 参照 - [P2795R5 Erroneous behaviour for uninitialized reads](https://open-std.org/jtc1/sc22/wg21/docs/papers/2024/p2795r5.html)