'identifier': 명시적 템플릿 인스턴스화 요청에 적합한 정의가 제공되지 않음
템플릿 클래스의 멤버가 정의되지 않았습니다.
예제
// C4661.cpp
// compile with: /W1 /LD
template<class T> class MyClass {
public:
void i(); // declaration but not definition
};
template MyClass< int >; // C4661
이 브라우저는 더 이상 지원되지 않습니다.
최신 기능, 보안 업데이트, 기술 지원을 이용하려면 Microsoft Edge로 업그레이드하세요.
'identifier': 명시적 템플릿 인스턴스화 요청에 적합한 정의가 제공되지 않음
템플릿 클래스의 멤버가 정의되지 않았습니다.
// C4661.cpp
// compile with: /W1 /LD
template<class T> class MyClass {
public:
void i(); // declaration but not definition
};
template MyClass< int >; // C4661