コンパイラの警告 (レベル 1) C4348
'type': 既定のパラメーターの再定義: パラメーター番号
テンプレート パラメーターが再定義されました。
次の例では 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 { };