我正在尝试定义包含非类型模板参数成员函数的模板类的专业化。我收到以下错误:
error: too few template-parameter-lists
Here's a sample class that describes the problem in brief,
// file.h
template <typename T>
class ClassA {
T Setup();
template <int K> static void Execute();
};
//file.cc
void ClassA<int>::Execute<2>() { //Do stuff }
我相信这更像是一个语法问题而不是设计问题,有什么线索吗?谢谢