
14 Oct
2013
14 Oct
'13
3:40 a.m.
On 10/13/2013 4:10 PM, Nathan Ridge wrote:
How do you construct a MPL sequence from a variadic template parameter pack?
Should be as simple as:
#include
template
struct make_mpl_vector { typedef boost::mpl::vector type; }; typedef make_mpl_vector
::type type;
Thanks just passing Args... to mpl::vector works wonderfully.