Boost C++ Libraries: Ticket #1999: class split_iterator has incorrect facade_type specified https://svn.boost.org/trac10/ticket/1999 <p> in algorithm/string/find_iterator.hpp:220: we have: </p> <p> template&lt;typename IteratorT&gt; class split_iterator : </p> <p> ... </p> <p> <em> base type typedef iterator_facade&lt; </em></p> <blockquote> <p> find_iterator&lt;IteratorT&gt;, <sup></sup><sup></sup><sup></sup><sup></sup><sup></sup><sup></sup><sup> </sup></p> <blockquote> <p> iterator_range&lt;IteratorT&gt;, forward_traversal_tag&gt; facade_type; </p> </blockquote> </blockquote> <p> Surely split_iterator's facade type (line# 233) should be split_iterator not find_iterator. Is the confusion because this code was copied from / based on the find_iterator code above? </p> en-us Boost C++ Libraries /htdocs/site/boost.png https://svn.boost.org/trac10/ticket/1999 Trac 1.4.3 Marshall Clow Tue, 17 Jun 2008 15:46:41 GMT component changed; owner set https://svn.boost.org/trac10/ticket/1999#comment:1 https://svn.boost.org/trac10/ticket/1999#comment:1 <ul> <li><strong>owner</strong> set to <span class="trac-author">Pavol Droba</span> </li> <li><strong>component</strong> <span class="trac-field-old">None</span> → <span class="trac-field-new">string_algo</span> </li> </ul> Ticket Pavol Droba Tue, 17 Jun 2008 20:32:17 GMT status changed; resolution set https://svn.boost.org/trac10/ticket/1999#comment:2 https://svn.boost.org/trac10/ticket/1999#comment:2 <ul> <li><strong>status</strong> <span class="trac-field-old">new</span> → <span class="trac-field-new">closed</span> </li> <li><strong>resolution</strong> → <span class="trac-field-new">fixed</span> </li> </ul> <p> That typedef is actually not used at all. I have just removed it. </p> Ticket