Compiler Error C3205
Visual Studio 2015
The new home for Visual Studio documentation is Visual Studio 2017 Documentation on docs.microsoft.com.
The latest version of this topic can be found at Compiler Error C3205.
argument list for template parameter 'parameter' is missing
A template parameter is missing.
The following sample 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;
}
Show: