forked from boostorg/range
modified to conform with new iterator_rang.hpp: idl_begin and idl_end are implemented in separate class
[SVN r27279]
This commit is contained in:
@ -27,7 +27,8 @@ namespace boost
|
|||||||
{
|
{
|
||||||
typedef BOOST_DEDUCED_TYPENAME range_result_iterator<ForwardRange>::type iterator_t;
|
typedef BOOST_DEDUCED_TYPENAME range_result_iterator<ForwardRange>::type iterator_t;
|
||||||
typedef iterator_range< iterator_t > base;
|
typedef iterator_range< iterator_t > base;
|
||||||
|
|
||||||
|
typedef BOOST_DEDUCED_TYPENAME base::impl impl;
|
||||||
public:
|
public:
|
||||||
typedef BOOST_DEDUCED_TYPENAME range_value<ForwardRange>::type value_type;
|
typedef BOOST_DEDUCED_TYPENAME range_value<ForwardRange>::type value_type;
|
||||||
typedef BOOST_DEDUCED_TYPENAME range_result_iterator<ForwardRange>::type iterator;
|
typedef BOOST_DEDUCED_TYPENAME range_result_iterator<ForwardRange>::type iterator;
|
||||||
@ -43,7 +44,7 @@ namespace boost
|
|||||||
sub_range( ForwardRange2& r ) :
|
sub_range( ForwardRange2& r ) :
|
||||||
|
|
||||||
#if BOOST_WORKAROUND(BOOST_INTEL_CXX_VERSION, <= 800 )
|
#if BOOST_WORKAROUND(BOOST_INTEL_CXX_VERSION, <= 800 )
|
||||||
base( this->adl_begin( r ), this->adl_end( r ) )
|
base( impl::adl_begin( r ), impl::adl_end( r ) )
|
||||||
#else
|
#else
|
||||||
base( r )
|
base( r )
|
||||||
#endif
|
#endif
|
||||||
@ -53,7 +54,7 @@ namespace boost
|
|||||||
sub_range( const ForwardRange2& r ) :
|
sub_range( const ForwardRange2& r ) :
|
||||||
|
|
||||||
#if BOOST_WORKAROUND(BOOST_INTEL_CXX_VERSION, <= 800 )
|
#if BOOST_WORKAROUND(BOOST_INTEL_CXX_VERSION, <= 800 )
|
||||||
base( this->adl_begin( r ), this->adl_end( r ) )
|
base( impl::adl_begin( r ), impl::adl_end( r ) )
|
||||||
#else
|
#else
|
||||||
base( r )
|
base( r )
|
||||||
#endif
|
#endif
|
||||||
|
Reference in New Issue
Block a user