merge from trunk

[SVN r61043]
This commit is contained in:
Christopher Schmidt
2010-04-04 14:43:54 +00:00
388 changed files with 6164 additions and 2576 deletions

View File

@ -15,7 +15,7 @@ namespace boost { namespace fusion
{
// Special tags:
struct boost_tuple_tag; // boost::tuples::tuple tag
struct array_tag; // boost::array tag
struct boost_array_tag; // boost::array tag
struct mpl_sequence_tag; // mpl sequence tag
struct std_pair_tag; // std::pair tag
@ -48,7 +48,7 @@ namespace boost { namespace fusion
struct category_of_impl<boost_tuple_tag>;
template <>
struct category_of_impl<array_tag>;
struct category_of_impl<boost_array_tag>;
template <>
struct category_of_impl<mpl_sequence_tag>;

2
include/boost/fusion/support/ext_/is_segmented.hpp Executable file → Normal file
View File

@ -14,7 +14,7 @@ namespace boost { namespace fusion
// Special tags:
struct sequence_facade_tag;
struct boost_tuple_tag; // boost::tuples::tuple tag
struct array_tag; // boost::array tag
struct boost_array_tag; // boost::array tag
struct mpl_sequence_tag; // mpl sequence tag
struct std_pair_tag; // std::pair tag
struct iterator_range_tag;

View File

@ -19,7 +19,7 @@ namespace boost { namespace fusion
// Special tags:
struct non_fusion_tag;
struct boost_tuple_tag; // boost::tuples::tuple tag
struct array_tag; // boost::array tag
struct boost_array_tag; // boost::array tag
struct mpl_sequence_tag; // mpl sequence tag
struct std_pair_tag; // std::pair tag
@ -43,7 +43,7 @@ namespace boost { namespace fusion
struct is_sequence_impl<boost_tuple_tag>;
template <>
struct is_sequence_impl<array_tag>;
struct is_sequence_impl<boost_array_tag>;
template <>
struct is_sequence_impl<mpl_sequence_tag>;
@ -56,8 +56,9 @@ namespace boost { namespace fusion
{
template <typename T>
struct is_sequence
: extension::is_sequence_impl<typename detail::tag_of<T>::type>::
template apply<T>
: extension::is_sequence_impl<
typename fusion::detail::tag_of<T>::type
>::template apply<T>
{};
}
}}

View File

@ -15,7 +15,7 @@ namespace boost { namespace fusion
// Special tags:
struct sequence_facade_tag;
struct boost_tuple_tag; // boost::tuples::tuple tag
struct array_tag; // boost::array tag
struct boost_array_tag; // boost::array tag
struct mpl_sequence_tag; // mpl sequence tag
struct std_pair_tag; // std::pair tag
@ -41,7 +41,7 @@ namespace boost { namespace fusion
struct is_view_impl<boost_tuple_tag>;
template <>
struct is_view_impl<array_tag>;
struct is_view_impl<boost_array_tag>;
template <>
struct is_view_impl<mpl_sequence_tag>;