
16 Nov
2004
16 Nov
'04
4:40 p.m.
I'm pretty sure that's an MPL limitation. If you want to build a vector of more than 10 elements, you need to
#include <boost/mpl/vector20.hpp>
or if you need more than 20 elements,
#include <boost/mpl/vector30.hpp>
I've noticed that the vectorXX.hpp files only allow you to make a vector with exactly that many items. What do you do if you want a vector of, say, 25 items?