'identifier' : 明示的なテンプレートのインスタンス化要求に対して適切な定義がありません
テンプレート クラスのメンバーが定義されていません。
例
// C4661.cpp
// compile with: /W1 /LD
template<class T> class MyClass {
public:
void i(); // declaration but not definition
};
template MyClass< int >; // C4661
このブラウザーはサポートされなくなりました。
Microsoft Edge にアップグレードすると、最新の機能、セキュリティ更新プログラム、およびテクニカル サポートを利用できます。
'identifier' : 明示的なテンプレートのインスタンス化要求に対して適切な定義がありません
テンプレート クラスのメンバーが定義されていません。
// C4661.cpp
// compile with: /W1 /LD
template<class T> class MyClass {
public:
void i(); // declaration but not definition
};
template MyClass< int >; // C4661