This page is a snapshot from the LWG issues list, see theLibrary Active Issues List for more information and the meaning ofTC1 status.
Section: 99 [depr.str.strstreams]Status:TC1Submitter: Brendan KehoeOpened: 1998-06-01Last modified: 2016-01-28
Priority:Not Prioritized
View all issues withTC1 status.
Discussion:
See lib-6522 and edit-814.
Proposed resolution:
Change 99 [depr.strstreambuf] (since streambuf is a typedef ofbasic_streambuf<char>) from:
virtual streambuf<char>* setbuf(char* s, streamsize n);
to:
virtual streambuf* setbuf(char* s, streamsize n);
In [depr.strstream] insert the semicolon now missing afterint_type:
namespace std { class strstream : public basic_iostream<char> { public: // Types typedef char char_type; typedef typename char_traits<char>::int_type int_type typedef typename char_traits<char>::pos_type pos_type;