Work-around CW-8.3 failure because it can't decide between by-value or copy constructor for an iterator range.

[SVN r28918]
This commit is contained in:
Rene Rivera
2005-05-15 02:38:04 +00:00
parent 0f707ed9c9
commit bc09128c6e

View File

@ -516,7 +516,11 @@ namespace boost {
ForwardIterator2T,
ForwardIterator2T ) const
{
#if BOOST_WORKAROUND( __MWERKS__, <= 0x3003 )
return iterator_range<const ForwardIterator2T>(this->m_Range);
#else
return m_Range;
#endif
}
private: