forked from boostorg/range
removed errorness ADL hook
[SVN r24568]
This commit is contained in:
@ -110,23 +110,13 @@ namespace range_detail
|
|||||||
template< class T >
|
template< class T >
|
||||||
inline BOOST_DEDUCED_TYPENAME range_iterator<T>::type begin( T& r )
|
inline BOOST_DEDUCED_TYPENAME range_iterator<T>::type begin( T& r )
|
||||||
{
|
{
|
||||||
#if !BOOST_WORKAROUND(__BORLANDC__, BOOST_TESTED_AT(0x564))
|
|
||||||
using range_detail::begin;
|
|
||||||
return begin( r );
|
|
||||||
#else
|
|
||||||
return range_detail::begin( r );
|
return range_detail::begin( r );
|
||||||
#endif
|
|
||||||
}
|
}
|
||||||
|
|
||||||
template< class T >
|
template< class T >
|
||||||
inline BOOST_DEDUCED_TYPENAME range_const_iterator<T>::type begin( const T& r )
|
inline BOOST_DEDUCED_TYPENAME range_const_iterator<T>::type begin( const T& r )
|
||||||
{
|
{
|
||||||
#if !BOOST_WORKAROUND(__BORLANDC__, BOOST_TESTED_AT(0x564))
|
|
||||||
using range_detail::begin;
|
|
||||||
return begin( r );
|
|
||||||
#else
|
|
||||||
return range_detail::begin( r );
|
return range_detail::begin( r );
|
||||||
#endif
|
|
||||||
}
|
}
|
||||||
|
|
||||||
} // namespace boost
|
} // namespace boost
|
||||||
|
@ -57,12 +57,7 @@ namespace range_detail
|
|||||||
template< class T >
|
template< class T >
|
||||||
inline bool empty( const T& r )
|
inline bool empty( const T& r )
|
||||||
{
|
{
|
||||||
#if !BOOST_WORKAROUND(__BORLANDC__, BOOST_TESTED_AT(0x564))
|
|
||||||
using range_detail::empty;
|
|
||||||
return empty( r );
|
|
||||||
#else
|
|
||||||
return range_detail::empty( r );
|
return range_detail::empty( r );
|
||||||
#endif
|
|
||||||
}
|
}
|
||||||
|
|
||||||
} // namepace 'boost'
|
} // namepace 'boost'
|
||||||
|
@ -109,23 +109,13 @@ namespace range_detail
|
|||||||
template< class T >
|
template< class T >
|
||||||
inline BOOST_DEDUCED_TYPENAME range_iterator<T>::type end( T& r )
|
inline BOOST_DEDUCED_TYPENAME range_iterator<T>::type end( T& r )
|
||||||
{
|
{
|
||||||
#if !BOOST_WORKAROUND(__BORLANDC__, BOOST_TESTED_AT(0x564))
|
|
||||||
using range_detail::end;
|
|
||||||
return end( r );
|
|
||||||
#else
|
|
||||||
return range_detail::end( r );
|
return range_detail::end( r );
|
||||||
#endif
|
|
||||||
}
|
}
|
||||||
|
|
||||||
template< class T >
|
template< class T >
|
||||||
inline BOOST_DEDUCED_TYPENAME range_const_iterator<T>::type end( const T& r )
|
inline BOOST_DEDUCED_TYPENAME range_const_iterator<T>::type end( const T& r )
|
||||||
{
|
{
|
||||||
#if !BOOST_WORKAROUND(__BORLANDC__, BOOST_TESTED_AT(0x564))
|
|
||||||
using range_detail::end;
|
|
||||||
return end( r );
|
|
||||||
#else
|
|
||||||
return range_detail::end( r );
|
return range_detail::end( r );
|
||||||
#endif
|
|
||||||
}
|
}
|
||||||
|
|
||||||
} // namespace 'boost'
|
} // namespace 'boost'
|
||||||
|
@ -88,12 +88,7 @@ namespace range_detail
|
|||||||
template< class T >
|
template< class T >
|
||||||
inline BOOST_DEDUCED_TYPENAME range_size<T>::type size( const T& r )
|
inline BOOST_DEDUCED_TYPENAME range_size<T>::type size( const T& r )
|
||||||
{
|
{
|
||||||
#if !BOOST_WORKAROUND(__BORLANDC__, BOOST_TESTED_AT(0x564))
|
|
||||||
using range_detail::size;
|
|
||||||
return size( r );
|
|
||||||
#else
|
|
||||||
return range_detail::size( r );
|
return range_detail::size( r );
|
||||||
#endif
|
|
||||||
}
|
}
|
||||||
|
|
||||||
} // namespace 'boost'
|
} // namespace 'boost'
|
||||||
|
Reference in New Issue
Block a user