Hi,
If I am trying to make a fusion sequence mpl compatible, do I need to specialize mpl::is_sequence as well? I had expected that the following should be true:
BOOST_MPL_ASSERT(( fusion::traits::is_sequence<myseq> ));
BOOST_MPL_ASSERT(( mpl::is_sequence<myseq> ));
But the compilation fails on the second line. I've also defined begin using the fusion extension mechanism for this sequence.
Thanks!
Sohail