
10 Feb
2009
10 Feb
'09
7:32 p.m.
Hi, I tried to make boost::array a conforming MPL sequence by including: #include <boost/fusion/adapted/array.hpp> // makes array a conforming fusion sequence #include <boost/fusion/mpl.hpp> // makes fusion sequences conforming MPL sequences but, typedef boost::array<int, 1> array; assert(boost::mpl::is_sequence<array>::type::value); // fails Am I misinterpreting the fusion documentation in expecting that this should work? Is there another way of making boost::array an mpl sequence? TIA, Stjepan