Compiler Warning (level 1) C4662
Visual Studio 2015
The new home for Visual Studio documentation is Visual Studio 2017 Documentation on docs.microsoft.com.
The latest version of this topic can be found at 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 not defined.
// C4662.cpp // compile with: /W1 /LD template<class T, int i> class MyClass; // no definition template MyClass< int, 1>; // C4662
Show: