Skip to content

Commit

Permalink
fix(basic_ifstream): fix alias name
Browse files Browse the repository at this point in the history
  • Loading branch information
yumetodo committed Dec 14, 2019
1 parent 393dce8 commit 130a872
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions reference/fstream/basic_ifstream.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ namespace std {
template <class CharT, class Traits = char_traits<CharT>>
class basic_ifstream : public basic_iostream<CharT, Traits>;

using fstream = basic_ifstream<char>;
using wfstream = basic_ifstream<wchar_t>;
using ifstream = basic_ifstream<char>;
using wifstream = basic_ifstream<wchar_t>;
}
```
* char_traits[link /reference/string/char_traits.md]
Expand Down

0 comments on commit 130a872

Please sign in to comment.