$include_dir="/home/hyper-archives/boost/include"; include("$include_dir/msg-header.inc") ?>
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;