다음을 통해 공유


컴파일러 경고(수준 1) C4662

명시적 인스턴스화. 템플릿-클래스 'identifier1'에 'identifier2'를 특수화하는 데 사용된 정의가 없습니다.

지정된 템플릿-클래스가 선언되었지만 정의되지 않았습니다.

예제

// C4662.cpp
// compile with: /W1 /LD
template<class T, int i> class MyClass; // no definition
template MyClass< int, 1>;              // C4662