Patches for MWCW and gcc-4.0.

[SVN r26704]
This commit is contained in:
John Maddock
2005-01-15 11:23:46 +00:00
parent 34355d3e79
commit 1e48609cfd
4 changed files with 22 additions and 3 deletions

View File

@ -536,6 +536,12 @@ public:
out->append(1, v);
return *this;
}
typedef std::ptrdiff_t difference_type;
typedef typename S::value_type value_type;
typedef value_type* pointer;
typedef value_type& reference;
typedef std::output_iterator_tag iterator_category;
};
template <class OutputIterator, class Iterator, class Alloc, class charT, class traits>