编译器警告(等级 1)C4667

“function”: 未定义与强制实例化匹配的函数模板

无法实例化尚未声明的函数模板。

下面的示例生成 C4667:

// C4667a.cpp
// compile with: /LD /W1
template
void max(const int &, const int &); // C4667 expected

若要避免出现此警告,请先声明函数模板:

// C4667b.cpp
// compile with: /LD
// Declare the function template
template<typename T>
const T &max(const T &a, const T &b) {
   return (a > b) ? a : b;
}
// Then forcibly instantiate it with a desired type ... i.e. 'int'
//
template
const int &max(const int &, const int &);