From 8e189aeb49dd50081a66363b6ee19fcccbec9336 Mon Sep 17 00:00:00 2001 From: Jeremy Siek Date: Tue, 4 Jun 2002 20:52:11 +0000 Subject: [PATCH] blah [SVN r209] --- doc/iterator-categories.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/iterator-categories.html b/doc/iterator-categories.html index 2622197..2c3b70e 100644 --- a/doc/iterator-categories.html +++ b/doc/iterator-categories.html @@ -39,9 +39,9 @@ iterator categories.

Because of the mixing of iterator traversal and dereference return type, many useful iterators can not be appropriately categorized. For example, vector<bool>::iterator is almost a random access iterator, but -the return type is not bool& (see issue -96 and Herb Sutter's paper J16/99-0008 = WG21 N1185). Therefore, the +the return type is not bool& (see +issue 96 +and Herb Sutter's paper J16/99-0008 = WG21 N1185). Therefore, the iterators only meet the requirements of input iterator and output iterator. This is so nonintuitive that at least one implementation erroneously assigns random_access_iterator_tag as its iterator_category. Also,