明示的なインスタンス化。テンプレート クラス 'identifier1' に 'identifier2' を特定する定義がありません
指定したテンプレート クラスを宣言しましたが、定義していません。
例
// C4662.cpp
// compile with: /W1 /LD
template<class T, int i> class MyClass; // no definition
template MyClass< int, 1>; // C4662
このブラウザーはサポートされなくなりました。
Microsoft Edge にアップグレードすると、最新の機能、セキュリティ更新プログラム、およびテクニカル サポートを利用できます。
明示的なインスタンス化。テンプレート クラス 'identifier1' に 'identifier2' を特定する定義がありません
指定したテンプレート クラスを宣言しましたが、定義していません。
// C4662.cpp
// compile with: /W1 /LD
template<class T, int i> class MyClass; // no definition
template MyClass< int, 1>; // C4662