Created on 2009-12-04.00:00:00 last changed 161 months ago
Proposed resolution:
Change [istream.iterator.cons] like so:
istream_iterator(istream_type& s);3 Effects: Initializes in_stream with &s. value ...
And [ostream.iterator.cons.des] like so:
ostream_iterator(ostream_type& s);1 Effects: Initializes out_stream with &s and delim with null.
ostream_iterator(ostream_type& s, const charT* delimiter);2 Effects: Initializes out_stream with &s and delim with delimiter.
[ 2009-12-23 Moved to Tentatively Ready after 6 positive votes on c++std-lib. ]
[istream.iterator.cons] describes the effects in terms of:
basic_istream<charT,traits>* in_stream; // exposition only3 Effects: Initializes in_stream with s.
That should be &s and similarly for [ostream.iterator.cons.des].
History | |||
---|---|---|---|
Date | User | Action | Args |
2011-08-23 20:07:26 | admin | set | status: wp -> c++11 |
2010-10-21 18:28:33 | admin | set | messages: + msg1429 |
2010-10-21 18:28:33 | admin | set | messages: + msg1428 |
2009-12-04 00:00:00 | admin | create |