标签: c++ visual-studio templates c++11
我有以下代码:
template< const int D=1> class Parent { class Nested: public OtherClass<D> { }; };
执行代码时出现以下错误:
&#34;未命名的参数:&#34; OtherClass的无效模板参数,预期的编译时常量表达式。
我该如何使这项工作?我需要访问模板参数D的访问参数,因为它是另一个模板的输入。