$include_dir="/home/hyper-archives/boost/include"; include("$include_dir/msg-header.inc") ?>
From: Giovanni Bajo (giovannibajo_at_[hidden])
Date: 2004-01-14 10:56:22
Daniel Krügler (nee Spangenberg) wrote:
> Does there exist a boost::mpl way (?) to define my
> boost::tuples::tuple<> inside the given
> Test class template until the last non-mpl::void_ is filled into it?
> (Iteration until end??)
Can't you just say:
typedef typename mpl::remove<InternalTypeContainer, mpl::void_>::type
InternalTypeContainerNoVoid;
?
-- Giovanni Bajo