forked from boostorg/range
*** empty log message ***
[SVN r24123]
This commit is contained in:
@ -86,12 +86,12 @@ namespace boost {
|
||||
//! Constructor from a Range
|
||||
template< class Range >
|
||||
iterator_range( const Range& r ) :
|
||||
m_Begin( begin( r ) ), m_End( end( r ) ) {}
|
||||
m_Begin( boost::begin( r ) ), m_End( boost::end( r ) ) {}
|
||||
|
||||
//! Constructor from a Range
|
||||
template< class Range >
|
||||
iterator_range( Range& r ) :
|
||||
m_Begin( begin( r ) ), m_End( end( r ) ) {}
|
||||
m_Begin( boost::begin( r ) ), m_End( boost::end( r ) ) {}
|
||||
|
||||
//! Copy constructor -- default OK
|
||||
|
||||
|
Reference in New Issue
Block a user