コンパイラの警告 (レベル 1) C4662
明示的なインスタンス化。テンプレート クラス 'identifier1' に 'identifier2' を特定する定義がありません
指定したテンプレート クラスを宣言しましたが、定義していません。
例
// C4662.cpp
// compile with: /W1 /LD
template<class T, int i> class MyClass; // no definition
template MyClass< int, 1>; // C4662