*** empty log message ***

[SVN r24707]
This commit is contained in:
Thorsten Jørgen Ottosen
2004-08-24 12:59:10 +00:00
parent a929adc492
commit af8171efdc
2 changed files with 17 additions and 2 deletions

View File

@ -192,6 +192,8 @@ namespace boost {
// iterator range free-standing operators ---------------------------//
#ifdef BOOST_NO_FUNCTION_TEMPLATE_ORDERING
#else
template< class Iterator >
inline bool empty( const iterator_range<Iterator>& r )
{
@ -201,6 +203,7 @@ namespace boost {
//
return r.empty();
}
#endif
//! iterator_range output operator
/*!

View File

@ -39,11 +39,23 @@ namespace boost
{ }
template< class ForwardRange2 >
sub_range( ForwardRange2& r ) : base( r )
sub_range( ForwardRange2& r ) :
#if BOOST_WORKAROUND(BOOST_INTEL_CXX_VERSION, <= 800 )
base( boost::begin( r ), boost::end( r ) )
#else
base( r )
#endif
{ }
template< class ForwardRange2 >
sub_range( const ForwardRange2& r ) : base( r )
sub_range( const ForwardRange2& r ) :
#if BOOST_WORKAROUND(BOOST_INTEL_CXX_VERSION, <= 800 )
base( boost::begin( r ), boost::end( r ) )
#else
base( r )
#endif
{ }
template< class Iter >