removed errorness ADL hook

[SVN r24568]
This commit is contained in:
Thorsten Jørgen Ottosen
2004-08-18 21:31:35 +00:00
parent e0e4055a9d
commit 247ff6c8b8
4 changed files with 0 additions and 30 deletions

View File

@ -109,23 +109,13 @@ namespace range_detail
template< class T >
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 );
#endif
}
template< class T >
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 );
#endif
}
} // namespace 'boost'