fixing issues with fusion zip_view size on intel

[SVN r38167]
This commit is contained in:
Dan Marsden
2007-07-08 14:26:01 +00:00
parent eb79a48868
commit 046d853d63
3 changed files with 17 additions and 7 deletions

View File

@ -53,8 +53,13 @@ namespace boost { namespace fusion
template <typename Sequence>
struct size
: extension::size_impl<typename detail::tag_of<Sequence>::type>::
template apply<Sequence>
{};
template apply<Sequence>
{
typedef typename extension::size_impl<typename detail::tag_of<Sequence>::type>::
template apply<Sequence>::type size_application;
BOOST_STATIC_CONSTANT(int, value = size_application::value);
};
}
template <typename Sequence>