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