Boost logo

Boost :

From: nbecker_at_[hidden]
Date: 2002-02-05 10:37:05


In increment:

 if( ++x.base() == m_bounds.second )
            x.base() = m_bounds.first;
 

Since m_bounds.second is not included in the range, shouldn't that be:

 if( x.base()++ == m_bounds.second )
            x.base() = m_bounds.first;


Boost list run by bdawes at acm.org, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk