Поделиться через


Предупреждение компилятора (уровень 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 { };