Skip to content

Commit 7e68271

Browse files
C++26 未初期化変数の読み取り : 訳してない用語のマーキング
Co-authored-by: Kazutoshi SATODA <k_satoda@f2.dion.ne.jp>
1 parent c965e26 commit 7e68271

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lang/cpp26/erroneous_behavior_for_uninitialized_reads.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ int main() {
3636
int x; // xは「erroneous value」をもつ
3737
int y [[indeterminate]]; // 意図して不定値に初期化されることを指示
3838
39-
f(x); // erroneous behavior (未初期化値の読み取り)
39+
f(x); // erroneous behavior」 (「erroneous value」の読み取り)
4040
f(y); // 未定義動作 (不定値の読み取り)
4141
}
4242
```

0 commit comments

Comments
 (0)