mirror of
https://github.com/boostorg/range.git
synced 2025-07-31 05:17:24 +02:00
applied borland patch
[SVN r33670]
This commit is contained in:
@ -261,8 +261,12 @@ namespace boost
|
|||||||
{
|
{
|
||||||
if( singular )
|
if( singular )
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
|
#if BOOST_WORKAROUND(__BORLANDC__, BOOST_TESTED_AT(0x582))
|
||||||
|
return std::distance<IteratorT>( m_Begin, m_End );
|
||||||
|
#else
|
||||||
return std::distance( m_Begin, m_End );
|
return std::distance( m_Begin, m_End );
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
bool empty() const
|
bool empty() const
|
||||||
|
Reference in New Issue
Block a user