@@ -, +, @@ --- boost/mpl/zip_view.hpp | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) --- a/boost/mpl/zip_view.hpp +++ a/boost/mpl/zip_view.hpp @@ -37,7 +37,7 @@ struct zip_iterator typedef zip_iterator< typename transform1< IteratorSeq - , next<_1> + , boost::mpl::next<_1> >::type > next; }; @@ -48,8 +48,8 @@ template< struct zip_view { private: - typedef typename transform1< Sequences, begin<_1> >::type first_ones_; - typedef typename transform1< Sequences, end<_1> >::type last_ones_; + typedef typename transform1< Sequences, boost::mpl::begin<_1> >::type first_ones_; + typedef typename transform1< Sequences, boost::mpl::end<_1> >::type last_ones_; public: typedef nested_begin_end_tag tag; --