Skip to content

Latest commit

 

History

History
22 lines (18 loc) · 616 Bytes

compiler-warning-level-1-c4662.md

File metadata and controls

22 lines (18 loc) · 616 Bytes
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
C4662
C4662
7efda273-d04a-47b7-ad65-ff1ff94b5ffc

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.

Example

// C4662.cpp
// compile with: /W1 /LD
template<class T, int i> class MyClass; // no definition
template MyClass< int, 1>;              // C4662