Skip to content

Commit ccb7769

Browse files
committed
site_generator の更新により表が崩れていたのを修正
1 parent 3d01207 commit ccb7769

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

reference/iterator/istream_iterator.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ namespace std {
2525
## メンバ関数
2626

2727
| 名前 | 説明 | 対応バージョン |
28-
|----------------------------------------------------|-----------------------------------------------|-------||
28+
|----------------------------------------------------|-----------------------------------------------|-------|
2929
| [`(constructor)`](istream_iterator/op_constructor.md) | コンストラクタ | |
3030
| `~istream_iterator() = default` | デストラクタ | |
3131
| `operator=(const istream_iterator&) = default<br/> operator=(istream_iterator&&) = default` | 代入演算子 | |

reference/iterator/ostream_iterator.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ namespace std {
2121
## メンバ関数
2222
2323
| 名前 | 説明 | 対応バージョン |
24-
|----------------------------------|-----------------------|
24+
|----------------------------------|-----------------------|---|
2525
| [`(constructor)`](ostream_iterator/op_constructor.md) | コンストラクタ | |
2626
| `~ostream_iterator() = default` | デストラクタ | |
2727
| [`operator=`](ostream_iterator/op_assign.md) | 代入演算子 | |
@@ -32,7 +32,7 @@ namespace std {
3232
## メンバ型
3333
3434
| 名前 | 説明 | 対応バージョン |
35-
|----------------------------------|-----------------------|
35+
|----------------------------------|-----------------------|---|
3636
| `char_type` | `CharT` (デフォルトは`char`) | |
3737
| `traits_type` | `Traits` (デフォルトは`char_traits<CharT>`) | |
3838
| `ostream_type` | [`basic_ostream<CharT, Traits>`](../ostream/basic_ostream.md) | |

reference/iterator/ostreambuf_iterator.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ namespace std {
2323
## メンバ関数
2424
2525
| 名前 | 説明 | 対応バージョン |
26-
|----------------------------------|-----------------------|
26+
|----------------------------------|-----------------------|---|
2727
| [`(constructor)`](ostreambuf_iterator/op_constructor.md) | コンストラクタ | |
2828
| `~ostream_iterator() = default` | デストラクタ | |
2929
| [`operator=`](ostreambuf_iterator/op_assign.md) | 代入演算子 | |
@@ -35,7 +35,7 @@ namespace std {
3535
## メンバ型
3636
3737
| 名前 | 説明 | 対応バージョン |
38-
|----------------------------------|-----------------------|
38+
|----------------------------------|-----------------------|---|
3939
| `char_type` | `CharT` | |
4040
| `traits_type` | `Traits` (デフォルトは`char_traits<CharT>`) | |
4141
| `streambuf_type` | [`basic_streambuf<CharT, Traits>`](../streambuf/basic_streambuf.md) | |

reference/tuple.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
## タプル生成関数
1515

16-
| 名前 | 説明 |
16+
| 名前 | 説明 | 対応バージョン |
1717
|---------------------------------------------------|---------------------------------------------------|-------|
1818
| [`ignore`](tuple/ignore.md) | 無視する要素のプレースホルダー(constant variable) | C++11 |
1919
| [`make_tuple`](tuple/make_tuple.md) | 引数のコピーからタプルを生成する | C++11 |

reference/utility/pair.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ namespace std {
1818
1919
## メンバ変数
2020
21-
| 名前 | 説明 | 対応バージョン
21+
| 名前 | 説明 | 対応バージョン |
2222
|-------------------------|------------------|
2323
| `T1 first;` | 1つめの要素 | |
2424
| `T2 second;` | 2つめの要素 | |

0 commit comments

Comments
 (0)