Fixed forward_iterator_archetype pointer type to be ptr to const.

[SVN r18315]
This commit is contained in:
Thomas Witt
2003-04-25 21:55:33 +00:00
parent ce92fda5ba
commit 358b14915b

View File

@@ -532,7 +532,7 @@ namespace boost {
typedef std::forward_iterator_tag iterator_category;
typedef T value_type;
typedef const T& reference;
typedef T* pointer;
typedef T const* pointer;
typedef std::ptrdiff_t difference_type;
forward_iterator_archetype() { }
self& operator=(const self&) { return *this; }