diff --git a/doc/facade-and-adaptor.html b/doc/facade-and-adaptor.html index 7150824..78f4230 100755 --- a/doc/facade-and-adaptor.html +++ b/doc/facade-and-adaptor.html @@ -1859,11 +1859,15 @@ private: Iterator m_end; // exposition only }; -
If the Iterator argument models Readable Lvalue Iterator and -Forward Traversal Iterator then the iterator_category member is a -type convertible to std::forward_iterator_tag. Otherwise +
If iterator_traits<Iterator>::reference is a reference to +iterator_traits<Iterator>::value_type and +iterator_traversal<Iterator>::type is convertible to +forward_traversal_tag then the iterator_category member is a +type convertible to forward_iterator_tag. Otherwise iterator_category is a type convertible to -std::input_iterator_tag.
+input_iterator_tag. +