mirror of
https://github.com/boostorg/mpl.git
synced 2025-08-05 15:54:39 +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<
|
typedef zip_iterator<
|
||||||
typename transform1<
|
typename transform1<
|
||||||
IteratorSeq
|
IteratorSeq
|
||||||
, next<_1>
|
, mpl::next<_1>
|
||||||
>::type
|
>::type
|
||||||
> next;
|
> next;
|
||||||
};
|
};
|
||||||
@@ -48,8 +48,8 @@ template<
|
|||||||
struct zip_view
|
struct zip_view
|
||||||
{
|
{
|
||||||
private:
|
private:
|
||||||
typedef typename transform1< Sequences, begin<_1> >::type first_ones_;
|
typedef typename transform1< Sequences, mpl::begin<_1> >::type first_ones_;
|
||||||
typedef typename transform1< Sequences, end<_1> >::type last_ones_;
|
typedef typename transform1< Sequences, mpl::end<_1> >::type last_ones_;
|
||||||
|
|
||||||
public:
|
public:
|
||||||
typedef nested_begin_end_tag tag;
|
typedef nested_begin_end_tag tag;
|
||||||
|
Reference in New Issue
Block a user