Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 210427 | Differences between
and this patch

Collapse All | Expand All

(-)a/boost/mpl/zip_view.hpp (-4 / +3 lines)
Lines 37-43 struct zip_iterator Link Here
37
    typedef zip_iterator<
37
    typedef zip_iterator<
38
          typename transform1<
38
          typename transform1<
39
                IteratorSeq
39
                IteratorSeq
40
              , next<_1>
40
              , boost::mpl::next<_1>
41
            >::type
41
            >::type
42
        > next;
42
        > next;
43
};
43
};
Lines 48-55 template< Link Here
48
struct zip_view
48
struct zip_view
49
{
49
{
50
 private:
50
 private:
51
    typedef typename transform1< Sequences, begin<_1> >::type first_ones_;
51
    typedef typename transform1< Sequences, boost::mpl::begin<_1> >::type first_ones_;
52
    typedef typename transform1< Sequences, end<_1> >::type last_ones_;
52
    typedef typename transform1< Sequences, boost::mpl::end<_1> >::type last_ones_;
53
    
53
    
54
 public:
54
 public:
55
    typedef nested_begin_end_tag tag;
55
    typedef nested_begin_end_tag tag;
56
- 

Return to bug 210427