forked from boostorg/range
[range] Merge Boost.Range bug fixes to release branch (fixes #6944; fixes #7407; fixes #7408; fixes #7731; fixes #7827; fixes #8338; fixes #8453).
[SVN r84823]
This commit is contained in:
3
include/boost/range/adaptor/indexed.hpp
Executable file → Normal file
3
include/boost/range/adaptor/indexed.hpp
Executable file → Normal file
@ -55,6 +55,9 @@ namespace boost
|
||||
index_type m_index;
|
||||
|
||||
public:
|
||||
indexed_iterator()
|
||||
: m_index(index_type()) {}
|
||||
|
||||
explicit indexed_iterator( Iter i, index_type index )
|
||||
: base(i), m_index(index)
|
||||
{
|
||||
|
Reference in New Issue
Block a user