Skip to content

Commit

Permalink
chore(basic_fstream): コンストラクタからsetstateへのリンクを貼る
Browse files Browse the repository at this point in the history
  • Loading branch information
yumetodo committed Dec 11, 2019
1 parent bd8f693 commit a904a13
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion reference/fstream/basic_fstream/op_constructor.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ basic_fstream(basic_fstream&& rhs); // (7) C++11
- (1) : デフォルトコンストラクタ。空の状態にする。
- (2) : 仮引数`s`で指定したファイルを開く。
- [`rdbuf()->open(s, mode)`](/reference/fstream/basic_filebuf/open.md)を呼び出す。その結果が失敗だった(戻り値がヌルポインタだった)場合、`setstate(failbit)`を呼び出す。
- [`rdbuf()->open(s, mode)`](/reference/fstream/basic_filebuf/open.md)を呼び出す。その結果が失敗だった(戻り値がヌルポインタだった)場合、[`setstate(failbit)`](/reference/ios/basic_ios/setstate.md)を呼び出す。
- (3) : ファイルを指定する引数の型が`std::string`である点を除き、(2)と同じ。
- (4) : [`std::filesystem​::​path​::​value_­type`](/reference/filesystem/path.md)の型が`char`ではないときのみ定義される。効果は(2)と同じ。
- (5) : ファイルを指定する引数の型が[`std::filesystem::path`](/reference/filesystem/path.md)である点を除き、(2)と同じ。
Expand Down

0 comments on commit a904a13

Please sign in to comment.