Compiler Warning (level 1) C4662

explicit instantiation; template-class 'identifier1' has no definition from which to specialize 'identifier2'

The specified template-class was declared, but defined.

The following example causes this warning:

template<class T, int i> class MyClass; // no definition
template MyClass< int, 1>;              // warning