Nóta
Teastaíonn údarú chun rochtain a fháil ar an leathanach seo. Is féidir leat triail a bhaint as shíniú isteach nó eolairí a athrú.
Teastaíonn údarú chun rochtain a fháil ar an leathanach seo. Is féidir leat triail a bhaint as eolairí a athrú.
'type' : redefinition of default parameter : parameter number
Remarks
A template parameter was redefined.
Example
The following example generates 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 { };