mirror of
https://github.com/boostorg/iterator.git
synced 2025-07-24 01:47:17 +02:00
last nights intense scramble to get a revision ready for the C++ std committee
[SVN r21828]
This commit is contained in:
@ -7,7 +7,7 @@
|
||||
>
|
||||
class counting_iterator
|
||||
{
|
||||
public:
|
||||
public:
|
||||
typedef Incrementable value_type;
|
||||
typedef const Incrementable& reference;
|
||||
typedef const Incrementable* pointer;
|
||||
@ -21,9 +21,9 @@
|
||||
reference operator*() const;
|
||||
counting_iterator& operator++();
|
||||
counting_iterator& operator--();
|
||||
private:
|
||||
private:
|
||||
Incrementable m_inc; // exposition
|
||||
};
|
||||
};
|
||||
|
||||
|
||||
If the ``Difference`` argument is ``use_default`` then
|
||||
|
Reference in New Issue
Block a user