नोट
इस पृष्ठ तक पहुंच के लिए प्राधिकरण की आवश्यकता होती है। आप साइन इन करने या निर्देशिकाएँ बदलने का प्रयास कर सकते हैं।
इस पृष्ठ तक पहुंच के लिए प्राधिकरण की आवश्यकता होती है। आप निर्देशिकाएँ बदलने का प्रयास कर सकते हैं।
'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() {}