Changeset 99828 in vbox for trunk/include/iprt/nocrt/fstream
- Timestamp:
- May 17, 2023 1:48:57 PM (22 months ago)
- svn:sync-xref-src-repo-rev:
- 157464
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/nocrt/fstream
r98103 r99828 56 56 public: 57 57 basic_filebuf(PRTSTREAM a_pStrm = NULL, bool a_fStdStream = false) 58 : basic_streambuf ()58 : basic_streambuf<a_CharType, a_CharTraits>() 59 59 , m_pStrm(a_pStrm) 60 60 , m_fStdStream(a_fStdStream) … … 142 142 //} 143 143 144 std::streamsize xsputn(char_type const *a_pchSrc, std::streamsize a_cchSrc) //RT_OVERRIDE 144 std::streamsize xsputn(typename basic_streambuf<a_CharType, a_CharTraits>::char_type const *a_pchSrc, 145 std::streamsize a_cchSrc) //RT_OVERRIDE 145 146 { 146 147 if (flushBuffered()) … … 167 168 public: 168 169 basic_ofstream() 169 : basic_ostream (&m_FileBuf) /** @todo m_FileBuf isn't initialized yet... */170 : basic_ostream<a_CharType, a_CharTraits>(&m_FileBuf) /** @todo m_FileBuf isn't initialized yet... */ 170 171 , m_FileBuf() 171 172 { … … 173 174 174 175 explicit basic_ofstream(const char *a_pszFilename, ios_base::openmode a_fMode = ios_base::out) 175 : basic_ostream (&m_FileBuf) /** @todo m_FileBuf isn't initialized yet... */176 : basic_ostream<a_CharType, a_CharTraits>(&m_FileBuf) /** @todo m_FileBuf isn't initialized yet... */ 176 177 , m_FileBuf() 177 178 {
Note:
See TracChangeset
for help on using the changeset viewer.