2
0
mirror of https://github.com/boostorg/graph.git synced 2026-01-30 20:02:12 +00:00

fixed some bugs due to changes in iterator_adaptor::base()

[SVN r21864]
This commit is contained in:
Jeremy Siek
2004-01-21 18:46:08 +00:00
parent 72df35f1fa
commit fbe0af0831

View File

@@ -158,7 +158,7 @@ namespace boost {
{ }
void increment() {
++this->base();
++this->base_reference();
++m_targ;
}
@@ -212,12 +212,12 @@ namespace boost {
{
if (m_targ < m_src) // first half
{
++this->base();
++this->base_reference();
}
else
{ // second half
++m_inc;
this->base() += m_inc;
this->base_reference() += m_inc;
}
++m_targ;
}