description | title | ms.date | f1_keywords | helpviewer_keywords | ms.assetid | ||
---|---|---|---|---|---|---|---|
Learn more about: Compiler Warning (level 1) C4662 |
Compiler Warning (level 1) C4662 |
11/04/2016 |
|
|
7efda273-d04a-47b7-ad65-ff1ff94b5ffc |
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