|
Boost-Commit : |
From: agurtovoy_at_[hidden]
Date: 2008-06-22 22:31:23
Author: agurtovoy
Date: 2008-06-22 22:31:22 EDT (Sun, 22 Jun 2008)
New Revision: 46620
URL: http://svn.boost.org/trac/boost/changeset/46620
Log:
Fix redeclaration errors detected by GCC 4.3.0 (ticket #1528)
Text files modified:
trunk/boost/mpl/zip_view.hpp | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
Modified: trunk/boost/mpl/zip_view.hpp
==============================================================================
--- trunk/boost/mpl/zip_view.hpp (original)
+++ trunk/boost/mpl/zip_view.hpp 2008-06-22 22:31:22 EDT (Sun, 22 Jun 2008)
@@ -37,7 +37,7 @@
typedef zip_iterator<
typename transform1<
IteratorSeq
- , next<_1>
+ , mpl::next<_1>
>::type
> next;
};
@@ -48,8 +48,8 @@
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;
Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk