元boost::mpl::apply
函数仅适用于模板类型参数。例如,以下工作:
using namespace boost::mpl;
template <class U, class S = int>
struct Bar { };
using BarInt = apply<Bar<_1>, int>::type;
但是,如果我有一个带有非类型参数的单独类模板:
template <class U, int S = 50>
struct Quux { };
using QuuxInt = apply<Quux<_1>, int>::type;
我收到如下编译错误:
/usr/include/boost/mpl/aux_/preprocessed/gcc/apply_wrap.hpp:36:8: error: no class template named ‘apply’ in ‘struct Quux<mpl_::arg<1> >’
struct apply_wrap1
^
foo.cxx: In function ‘int main()’:
foo.cxx:25:21: error: expected type-specifier
using QuuxInt = apply<Quux<_1>, int>::type;
^
除了为 Bar 创建一个将所有非类型参数转换为类型参数的子类型之外,有没有办法解决这个问题?