BeOS5 (intel) fixes

[SVN r8133]
This commit is contained in:
John Maddock
2000-11-04 11:16:12 +00:00
parent 209636b869
commit fcdbbcff08
3 changed files with 68 additions and 35 deletions

View File

@ -287,6 +287,11 @@ struct debug_iterator : public BOOST_RE_RA_ITERATOR(T, std::ptrdiff_t)
bool operator<(const self& x) const {
return (cur < x.cur);
}
friend self operator+(difference_type n, const self& i)
{
self tmp = i;
return tmp += n;
}
};
#if defined(__SGI_STL_PORT) && (__SGI_STL_PORT >= 0x400)