File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -13,7 +13,6 @@ C++26とは、2026年中に改訂される予定の、C++バージョンの通
1313| ----------| ------|
1414| [ ` std::initializer_list ` の配列を静的記憶域に配置する] ( /lang/cpp26/static_storage_for_braced_initializers.md ) | ` std::vector v = {1, 2, 3}; ` のような初期化で初期化子リストを静的記憶域に配置することで無駄なコピーをなくす |
1515| [ 宣言のみで使用しない変数の名前として` _ ` をサポート] ( /lang/cpp26/nice_placeholder_with_no_name.md ) | 変数名` _ ` は暗黙で` [[maybe_unused]] ` が指定される |
16- | [ 非推奨となっていた列挙型の算術変換を削除] ( /lang/cpp26/remove_deprecated_arithmetic_conversion_on_enumerations.md ) | C++20から非推奨となっていた列挙値への算術演算で算術型に暗黙変換される仕様を削除 |
1716| [ 不完全型へのポインタに対する` delete ` を不適格とする] ( /lang/cpp26/deleting_a_pointer_to_an_incomplete_type_should_be_ill-formed.md.nolink ) | 未定義動作を引き起こす操作をコンパイルエラーとする |
1817| [ 返却された左辺値から暗黙変換された一時オブジェクトが参照に束縛されることを禁止する] ( /lang/cpp26/disallow_binding_a_returned_glvalue_to_a_temporary.md.nolink ) | 寿命切れの変数によって引き起こされるバグを防止する |
1918| [ 要素数不明の配列を集成体初期化する規則を明確化] ( /lang/cpp26/clarifying_rules_for_brace_elision_in_aggregate_initialization.md.nolink ) | 配列要素の集成体初期化で` {} ` が省略された場合の矛盾していた規定を修正 |
@@ -112,6 +111,13 @@ C++26とは、2026年中に改訂される予定の、C++バージョンの通
112111| [ 先行するカンマのない省略記号を非推奨化] ( /lang/cpp26/the_oxford_variadic_comma.md ) | ` void f(int, ...); ` はOK。` void f(int...); ` は非推奨 |
113112
114113
114+ ### 機能の削除
115+
116+ | 言語機能 | 説明 |
117+ | ----------| ------|
118+ | [ 非推奨となっていた列挙型の算術変換を削除] ( /lang/cpp26/remove_deprecated_arithmetic_conversion_on_enumerations.md ) | C++20から非推奨となっていた列挙値への算術演算で算術型に暗黙変換される仕様を削除 |
119+
120+
115121## ライブラリ更新の概要
116122### 新ライブラリ
117123- 文字列エンコーディングを識別するライブラリとして、[ ` <text_encoding> ` ] ( /reference/text_encoding.md.nolink ) を追加
You can’t perform that action at this time.
0 commit comments