编译器错误 C3205

缺少模板形参“parameter”的实参列表

缺少 模板 参数。

示例

下面的示例生成 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;
}