Skip to content

Commit

Permalink
C++23 : 拡張浮動小数点数型はライブラリで解説を書いた #1022
Browse files Browse the repository at this point in the history
  • Loading branch information
faithandbrave committed Feb 22, 2023
1 parent dcbf835 commit b137272
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
1 change: 0 additions & 1 deletion implementation-status.md
Expand Up @@ -249,7 +249,6 @@
| P0330R8: [(符号付き)`size_t`リテラルのためのサフィックス](/lang/cpp23/literal_suffix_for_signed_size_t.md) | `42z`/`42Z`とすることで`size_t`に対応する符号付き整数型のリテラルとする | 11 | 13 | - | - |
| P2290R3: [エスケープシーケンスの区切り](/lang/cpp23/delimited_escape_sequences.md.nolink) | エスケープシーケンスの範囲を明確にする構文を追加する | 13 | 15 | - | - |
| P2266R3: [暗黙的なムーブを簡略化](/lang/cpp23/simpler_implicit_move.md.nolink) | 参照を返す関数の`return`文で暗黙的にムーブされない問題を修正 | 13 | 13 | - | - |
| P1467R9: [浮動小数点数型の拡張](/lang/cpp23/extended_floating_point_types_and_standard_names.md.nolink) | 実装による拡張浮動小数点型の定義を許可する | 13 | - | - | - |
| P1787R6: [スコープと名前ルックアップの仕様整理](/lang/cpp23/declarations_and_where_to_find_them.md.nolink) | 複雑で不完全になっているスコープと名前ルックアップの仕様を整理し、一部の問題を解決する | - | - | - | - |
| P2615R1: [無意味なexport宣言を禁止する](/lang/cpp23/meaningful_exports.md.nolink) | | - | - | - | - |
| P2360R0: [初期化文での型の別名宣言を許可](/lang/cpp23/extend_init_statement_to_allow_alias_declaration.md.nolink) | `for (using T = int; T e : v) {}`を許可 | 12 | 14 | - | - |
Expand Down
3 changes: 2 additions & 1 deletion lang/cpp23.md
Expand Up @@ -14,7 +14,8 @@ C++23とは、2023年中に改訂される予定の、C++バージョンの通
| [(符号付き)`size_t`リテラルのためのサフィックス](cpp23/literal_suffix_for_signed_size_t.md) | `42z`/`42Z`とすることで`size_t`に対応する符号付き整数型のリテラルとする |
| [エスケープシーケンスの区切り](cpp23/delimited_escape_sequences.md.nolink) | エスケープシーケンスの範囲を明確にする構文を追加する |
| [暗黙的なムーブを簡略化](cpp23/simpler_implicit_move.md.nolink) | 参照を返す関数の`return`文で暗黙的にムーブされない問題を修正 |
| [浮動小数点数型の拡張](cpp23/extended_floating_point_types_and_standard_names.md.nolink) | 実装による拡張浮動小数点型の定義を許可する |

これらに加えて、ライブラリ機能として拡張浮動小数点数型が定義された。[`<stdfloat>`](/reference/stdfloat.md)を参照。


### 関数
Expand Down

0 comments on commit b137272

Please sign in to comment.