Skip to content

Commit 2f9eeb9

Browse files
リンクを追加
1 parent 571f918 commit 2f9eeb9

File tree

4 files changed

+9
-1
lines changed

4 files changed

+9
-1
lines changed

reference/iostream/cerr.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ namespace std {
99
extern wostream wcerr;
1010
}
1111
```
12+
* ostream[link ../ostream/basic_ostream.md]
13+
* wostream[link ../ostream/basic_ostream.md]
1214
1315
## 概要
1416
`cerr`も`wcerr`も、標準エラー出力に対する出力ストリームオブジェクトである。
@@ -62,4 +64,4 @@ int main()
6264

6365
## 参照
6466
- [`clog`](clog.md)
65-
- [`cout`](cout.md)
67+
- [`cout`](cout.md)

reference/iostream/cin.md

+2
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ namespace std {
99
extern wistream wcin;
1010
}
1111
```
12+
* istream[link ../istream/basic_istream.md]
13+
* wistream[link ../istream/basic_istream.md]
1214
1315
## 概要
1416
`cin` は、標準入力に対する入力ストリームオブジェクトである。

reference/iostream/clog.md

+2
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ namespace std {
99
extern wostream wclog;
1010
}
1111
```
12+
* ostream[link ../ostream/basic_ostream.md]
13+
* wostream[link ../ostream/basic_ostream.md]
1214
1315
## 概要
1416
`clog`も`wclog`も、標準エラー出力に対する出力ストリームオブジェクトである。

reference/iostream/cout.md

+2
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ namespace std {
99
extern wostream wcout;
1010
}
1111
```
12+
* ostream[link ../ostream/basic_ostream.md]
13+
* wostream[link ../ostream/basic_ostream.md]
1214
1315
## 概要
1416
`cout`も`wcout`も、標準出力に対する出力ストリームオブジェクトである。

0 commit comments

Comments
 (0)