明示的なインスタンス化。テンプレート クラス 'identifier1' に 'identifier2' を特定する定義がありません
注釈
指定したテンプレート クラスを宣言しましたが、定義していません。
例
次の例では C4662 が生成されます。
// C4662.cpp
// compile with: /W1 /LD
template<class T, int i> class MyClass; // no definition
template MyClass< int, 1>; // C4662