编译器警告(等级 1)C4348

“type”: 重定义默认参数 : 参数 number

已重新定义模板参数。

下面的示例生成 C4348:

// C4348.cpp
// compile with: /LD /W1
template <class T=int> struct A;   // forward declaration

template <class T=int> struct A { };
// C4348, redefinition of default parameter
// try the following line instead
// template <class T> struct A { };