mirror of
https://github.com/boostorg/algorithm.git
synced 2025-07-06 09:16:33 +02:00
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:
@ -516,7 +516,11 @@ namespace boost {
|
|||||||
ForwardIterator2T,
|
ForwardIterator2T,
|
||||||
ForwardIterator2T ) const
|
ForwardIterator2T ) const
|
||||||
{
|
{
|
||||||
|
#if BOOST_WORKAROUND( __MWERKS__, <= 0x3003 )
|
||||||
|
return iterator_range<const ForwardIterator2T>(this->m_Range);
|
||||||
|
#else
|
||||||
return m_Range;
|
return m_Range;
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
Reference in New Issue
Block a user