다음을 통해 공유


컴파일러 경고(수준 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 { };