diff --git a/indirect_iterator.htm b/indirect_iterator.htm index 4bb3896..394e8f8 100644 --- a/indirect_iterator.htm +++ b/indirect_iterator.htm @@ -185,7 +185,7 @@ int main(int, char*[]) "http://www.sgi.com/tech/stl/RandomAccessIterator.html">Random Access Iterator concept. In addition it has the following constructor:
-indirect_iterator_generator::type(const BaseIterator& it) +explicit indirect_iterator_generator::type(const BaseIterator& it)
-indirect_iterator_pair_generator::iterator(const BaseIterator& it) -indirect_iterator_pair_generator::const_iterator(const BaseIterator& it) +explicit indirect_iterator_pair_generator::iterator(const BaseIterator& it) +explicit indirect_iterator_pair_generator::const_iterator(const BaseIterator& it)
[3]There is a caveat to which concept the indirect iterator can model. If the return type of the @@ -420,6 +419,7 @@ a,b,c,d,e,f,g, "http://www.sgi.com/tech/stl/RandomAccessIterator.html">Random Access Iterator. +
Revised 10