From b953a6b63b65f40e0346332e7b94f051d16c7881 Mon Sep 17 00:00:00 2001 From: Aleksey Gurtovoy Date: Mon, 23 Jun 2008 02:31:22 +0000 Subject: [PATCH] Fix redeclaration errors detected by GCC 4.3.0 (ticket #1528) [SVN r46620] --- include/boost/mpl/zip_view.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/boost/mpl/zip_view.hpp b/include/boost/mpl/zip_view.hpp index ee13d03..7d1b1c9 100644 --- a/include/boost/mpl/zip_view.hpp +++ b/include/boost/mpl/zip_view.hpp @@ -37,7 +37,7 @@ struct zip_iterator typedef zip_iterator< typename transform1< IteratorSeq - , next<_1> + , 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, mpl::begin<_1> >::type first_ones_; + typedef typename transform1< Sequences, mpl::end<_1> >::type last_ones_; public: typedef nested_begin_end_tag tag;