Title
Minor Annex D errors
Status
tc1
Section
[depr.str.strstreams]
Submitter
Brendan Kehoe

Created on 1998-06-01.00:00:00 last changed 164 months ago

Messages

Date: 2010-10-21.18:28:33

Proposed resolution:

Change [depr.strstreambuf] (since streambuf is a typedef of basic_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 after int_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;
Date: 1998-06-01.00:00:00

See lib-6522 and edit-814.

History
Date User Action Args
2010-10-21 18:28:33adminsetmessages: + msg105
1998-06-01 00:00:00admincreate