mirror of
https://github.com/boostorg/mpl.git
synced 2025-08-03 06:44:37 +02:00
Fix redeclaration errors detected by GCC 4.3.0 (ticket #1528)
[SVN r46620]
This commit is contained in:
@@ -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;
|
||||
|
Reference in New Issue
Block a user