我有一个带有一个参数的模板函数。 我必须实例化那个函数而不调用那个函数意味着我必须显式地实例化。
我有这个功能:
template <class T> int function_name(T a) {}
我实例化了这个函数:
template int function_name<int>(int);
但我得到了以下错误:
error: expected primary-expression before 'template'
error: expected `;' before 'template'