नोट
इस पृष्ठ तक पहुंच के लिए प्राधिकरण की आवश्यकता होती है। आप साइन इन करने या निर्देशिकाएँ बदलने का प्रयास कर सकते हैं।
इस पृष्ठ तक पहुंच के लिए प्राधिकरण की आवश्यकता होती है। आप निर्देशिकाएँ बदलने का प्रयास कर सकते हैं।
argument list for template parameter 'parameter' is missing
Remarks
A template parameter is missing.
Example
The following example generates C3205:
// C3205.cpp
template<template<class> class T> struct A {
typedef T unparameterized_type; // C3205
// try the following line instead
// typedef T<int> unparameterized_type;
};
template <class T>
struct B {
typedef int value_type;
};
int main() {
A<B> x;
}