'identifier': 명시적 템플릿 인스턴스화 요청에 적합한 정의가 제공되지 않음
비고
템플릿 클래스의 멤버가 정의되지 않았습니다.
예제
다음 예제에서는 C4661을 생성합니다.
// C4661.cpp
// compile with: /W1 /LD
template<class T> class MyClass {
public:
void i(); // declaration but not definition
};
template MyClass< int >; // C4661