updated so ADL kick in in iterator_range and const_begin/const_end

[SVN r28562]
This commit is contained in:
Thorsten Jørgen Ottosen
2005-05-01 22:58:25 +00:00
parent b358ea0773
commit a02b6c0f74
4 changed files with 46 additions and 47 deletions

View File

@ -44,7 +44,7 @@ namespace boost
sub_range( ForwardRange2& r ) :
#if BOOST_WORKAROUND(BOOST_INTEL_CXX_VERSION, <= 800 )
base( boost::begin( r ), boost::end( r ) )
base( impl::adl_begin( r ), impl::adl_end( r ) )
#else
base( r )
#endif
@ -54,7 +54,7 @@ namespace boost
sub_range( const ForwardRange2& r ) :
#if BOOST_WORKAROUND(BOOST_INTEL_CXX_VERSION, <= 800 )
base( boost::begin( r ), boost::end( r ) )
base( impl::adl_begin( r ), impl::adl_end( r ) )
#else
base( r )
#endif