some changes for conceptgcc-4.3

[SVN r37529]
This commit is contained in:
Eric Niebler
2007-04-28 21:22:55 +00:00
parent 4c4e91a3ce
commit 416b82b14a
4 changed files with 9 additions and 9 deletions

View File

@ -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;
};

View File

@ -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;
};
}

View File

@ -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;
};
}