Merge bug fix for #9063 to release

[SVN r86218]
This commit is contained in:
Marshall Clow
2013-10-09 18:09:40 +00:00
parent 5279c8f061
commit 850fc02667
2 changed files with 16 additions and 19 deletions

View File

@ -132,12 +132,7 @@ namespace boost {
// increment
void increment()
{
if(m_Match.begin() == m_Match.end())
m_Match=this->do_find(m_Match.end(),m_End);
else {
input_iterator_type last = m_Match.begin();
m_Match=this->do_find(++last,m_End);
}
m_Match=this->do_find(m_Match.end(),m_End);
}
// comparison