Skip to content

Latest commit

 

History

History
25 lines (21 loc) · 607 Bytes

compiler-warning-level-1-c4661.md

File metadata and controls

25 lines (21 loc) · 607 Bytes
description title ms.date f1_keywords helpviewer_keywords ms.assetid
Learn more about: Compiler Warning (level 1) C4661
Compiler Warning (level 1) C4661
11/04/2016
C4661
C4661
603bb8b7-356d-4eef-924b-64d769bac5bd

Compiler Warning (level 1) C4661

'identifier' : no suitable definition provided for explicit template instantiation request

A member of the template class is not defined.

Example

// C4661.cpp
// compile with: /W1 /LD
template<class T> class MyClass {
public:
   void i();   // declaration but not definition
};
template MyClass< int >;  // C4661