Ooops, last fix had a misplaced "typename" in it, and therefore was not legal code, strangely some compilers just didn't care.

[SVN r23831]
This commit is contained in:
John Maddock
2004-07-20 10:38:44 +00:00
parent 048d5b788c
commit 7043e5585f

View File

@ -567,7 +567,7 @@ public:
typedef typename S::value_type value_type;
typedef typename S::pointer pointer;
typedef typename S::reference reference;
typedef typename std::output_iterator_tag iterator_category;
typedef std::output_iterator_tag iterator_category;
string_out_iterator(S& s) : out(&s) {}
string_out_iterator& operator++() { return *this; }