# | Line 175 | Line 175 | class basic_ifstrstream : public basic_istream<_CharT, | |
---|---|---|
175 | * parallel mode) associated with the stream. | |
176 | */ | |
177 | _Buf* rdbuf() const{ | |
178 | < | return const_cast<_Buf*>(internalBuf_); |
178 | > | return static_cast<_Buf*>(internalBuf_); |
179 | } | |
180 | ||
181 | private: | |
# | Line 338 | Line 338 | class basic_ifstrstream : public basic_istream<_CharT, | |
338 | bool isRead; /** file opened flag */ | |
339 | }; | |
340 | ||
341 | < | typedef basic_istringstream<char, char_traits<char>, allocator<char> > ifstringstream; |
341 | > | typedef basic_ifstrstream<char, char_traits<char>, allocator<char> > ifstrstream; |
342 | }//namespace oopse | |
343 | #endif //IO_IFSTRSTREAM_HPP |
– | Removed lines |
+ | Added lines |
< | Changed lines |
> | Changed lines |