Ticket #7827: indexed.hpp.patch

File indexed.hpp.patch, 620 bytes (added by Akira Takahashi <faithandbrave@…>, 10 years ago)
  • .hpp"

    diff --git "a/D:\\GitHub\\Boost\\boost-svn\\boost\\range\\adaptor\\indexed_origin.hpp" "b/D:\\GitHub\\Boost\\boost-svn\\boost\\range\\adaptor\\indexed.hpp"
    index 5a523ce..ead4775 100644
    old new namespace boost  
    5555            index_type m_index;
    5656
    5757        public:
     58            indexed_iterator()
     59            : m_index(index_type()) {}
     60
    5861            explicit indexed_iterator( Iter i, index_type index )
    5962            : base(i), m_index(index)
    6063            {