merged from trunk

[SVN r22049]
This commit is contained in:
Dave Abrahams
2004-01-29 13:33:58 +00:00
parent a2bfab9713
commit 60e24dfffa
3 changed files with 10 additions and 7 deletions

View File

@@ -47,8 +47,10 @@ class node_iter
)
: super_t(other.base()) {}
private:
# if !BOOST_WORKAROUND(__GNUC__, == 2)
private: // GCC2 can't grant friendship to template member functions
friend class boost::iterator_core_access;
# endif
void increment() { this->base_reference() = this->base()->next(); }
};