forked from boostorg/fusion
some changes for conceptgcc-4.3
[SVN r37529]
This commit is contained in:
@ -30,7 +30,7 @@ namespace boost { namespace fusion
|
||||
|
||||
typedef iterator_range<first_type, pos_type> left_type;
|
||||
typedef iterator_range<pos_type, last_type> right_type;
|
||||
typedef single_view<element_type> single_view;
|
||||
typedef fusion::single_view<element_type> single_view;
|
||||
typedef joint_view<left_type, single_view const> left_insert_type;
|
||||
typedef joint_view<left_insert_type, right_type> type;
|
||||
};
|
||||
|
@ -18,7 +18,7 @@ namespace boost { namespace fusion
|
||||
template <typename Sequence, typename T>
|
||||
struct push_back
|
||||
{
|
||||
typedef single_view<typename detail::as_fusion_element<T>::type> single_view;
|
||||
typedef fusion::single_view<typename detail::as_fusion_element<T>::type> single_view;
|
||||
typedef joint_view<Sequence, single_view const> type;
|
||||
};
|
||||
}
|
||||
|
@ -18,7 +18,7 @@ namespace boost { namespace fusion
|
||||
template <typename Sequence, typename T>
|
||||
struct push_front
|
||||
{
|
||||
typedef single_view<typename detail::as_fusion_element<T>::type> single_view;
|
||||
typedef fusion::single_view<typename detail::as_fusion_element<T>::type> single_view;
|
||||
typedef joint_view<single_view const, Sequence> type;
|
||||
};
|
||||
}
|
||||
|
Reference in New Issue
Block a user