Boost C++ Libraries: Ticket #382: Past-the-end tokenization in parse_date() https://svn.boost.org/trac10/ticket/382 <pre class="wiki">Loop termination condition is wrong. Comma is used instead of and operator: for(boost::tokenizer&lt;&gt;::iterator beg=tok.begin(); beg!=tok.end(), pos &lt; spec_str.size(); ++beg, ++pos) Should read as for(boost::tokenizer&lt;&gt;::iterator beg=tok.begin(); beg!=tok.end() &amp;&amp; pos &lt; spec_str.size(); ++beg, ++pos) </pre> en-us Boost C++ Libraries /htdocs/site/boost.png https://svn.boost.org/trac10/ticket/382 Trac 1.4.3 nimnul Wed, 06 Apr 2005 21:03:11 GMT status changed https://svn.boost.org/trac10/ticket/382#comment:1 https://svn.boost.org/trac10/ticket/382#comment:1 <ul> <li><strong>status</strong> <span class="trac-field-old">assigned</span> → <span class="trac-field-new">closed</span> </li> </ul> <pre class="wiki">Logged In: YES user_id=133193 Sorry... Seems to be a duplicate of 1155556 </pre> Ticket