mirror of
https://github.com/boostorg/regex.git
synced 2025-07-17 22:32:09 +02:00
Need to make string_out_iterator a "real" iterator type to keep commeau compiler happy.
[SVN r23722]
This commit is contained in:
@ -563,6 +563,12 @@ class string_out_iterator
|
||||
{
|
||||
S* out;
|
||||
public:
|
||||
typedef typename S::difference_type difference_type;
|
||||
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;
|
||||
|
||||
string_out_iterator(S& s) : out(&s) {}
|
||||
string_out_iterator& operator++() { return *this; }
|
||||
string_out_iterator& operator++(int) { return *this; }
|
||||
|
Reference in New Issue
Block a user