नोट
इस पृष्ठ तक पहुंच के लिए प्राधिकरण की आवश्यकता होती है। आप साइन इन करने या निर्देशिकाएँ बदलने का प्रयास कर सकते हैं।
इस पृष्ठ तक पहुंच के लिए प्राधिकरण की आवश्यकता होती है। आप निर्देशिकाएँ बदलने का प्रयास कर सकते हैं।
'template' : invalid template argument for template parameter 'parameter', expected a class template
Remarks
You passed an invalid argument to a class template. The class template expects template as a parameter.
Example
In the following example, calling Y<int, int> aY will generate C3200. The first parameter needs to be a template, such as Y<X, int> aY.
// C3200.cpp
template<typename T>
class X
{
};
template<template<typename U> class T1, typename T2>
class Y
{
};
int main()
{
Y<int, int> y; // C3200
}