コンパイラ エラー C2992
'class' : 型パラメーター リストが無効であるか、または不足しています。
クラスの前に、パラメーターがないか、無効である template
または generic キーワードが指定されています。
例
次の例では C2992 が生成されます。
// C2992.cpp
// compile with: /c
template <class T>
struct Outer {
template <class U>
struct Inner;
};
template <class T> // C2992
struct Outer<T>::Inner {};
template <class T>
template <class U> // OK
struct Outer<T>::Inner {};
C2992 は、ジェネリックを使用する場合にも発生する可能性があります。
// C2992b.cpp
// compile with: /c /clr
generic <class T>
ref struct Outer {
generic <class U>
ref struct Inner;
};
generic <class T> // C2992
ref struct Outer<T>::Inner {};
generic <class T>
generic <class U> // OK
ref struct Outer<T>::Inner {};