Белешка
Приступ овој страници захтева ауторизацију. Можете покушати да се пријавите или промените директоријуме.
Приступ овој страници захтева ауторизацију. Можете покушати да промените директоријуме.
'name' : invalid template-parameter
Remarks
A template parameter list contains an identifier that wasn't a template parameter.
This error is obsolete in Visual Studio 2022 and later versions.
Example
The following example generates C2917.
// C2917.cpp
// compile with: /c
template<class T> class Vector {
void sort();
};
template<class T*> void Vector<T>::sort() {} // C2917
// try the following line instead
// template<class T> void Vector<T>::sort() {}