Skip to content

Commit 2f2edf3

Browse files
committed
Headers: Fix definition of basic_ifstream
1 parent ac9344e commit 2f2edf3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

headers/fstream

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ typedef basic_fstream<wchar_t> wfstream;
101101
template <
102102
class CharT,
103103
class Traits = std::char_traits<CharT>
104-
> class basic_ifstream : public std::basic_ostream<CharT, Traits> {
104+
> class basic_ifstream : public std::basic_istream<CharT, Traits> {
105105
public:
106106
basic_ifstream();
107107
explicit basic_ifstream(const char* filename,

0 commit comments

Comments
 (0)