diff --git a/doc/facade-and-adaptor.html b/doc/facade-and-adaptor.html index f91c8a7..b55fbc5 100755 --- a/doc/facade-and-adaptor.html +++ b/doc/facade-and-adaptor.html @@ -742,14 +742,6 @@ traversal tags would add no information]
-If CategoryOrTraversal is use_default then -iterator_traversal<Derived>::type is convertible to the most -derived standard traversal tag type to which -iterator_traversal<Iterator>::type is also convertible, and not to -any more-derived traversal tag type. Otherwise -iterator_traversal<Derived>::type is convertible to the most -derived standard traversal tag type to which CategoryOrTraversal -is also convertible, and not to any more-derived traversal tag type.
The enable_if_interoperable template used above is for exposition purposes. The member operators should be only be in an overload set provided the derived types Dr1 and Dr2 are interoperable, @@ -1173,7 +1165,7 @@ class iterator_adaptor public: iterator_adaptor(); explicit iterator_adaptor(Base iter); - Base base() const; + Base const base() const; protected: Base const& base_reference() const; Base& base_reference(); @@ -1270,7 +1262,7 @@ expression involving Derived i -
Base base() const;
+Base const base() const;
[Note: specifying Base const gives implementations license to +return Base const& for efficiency's sake. If base() +returned just Base, it would be possible to call non-const +member functions on the result object directly]
Base base() const;
+Base const base() const;
[Note: specifying Base const gives implementations license to +return Base const& for efficiency's sake. If base() +returned just Base, it would be possible to call non-const +member functions on the result object directly]