Skip to content

Latest commit

 

History

History
35 lines (28 loc) · 703 Bytes

compiler-error-c3205.md

File metadata and controls

35 lines (28 loc) · 703 Bytes
description title ms.date f1_keywords helpviewer_keywords ms.assetid
Learn more about: Compiler Error C3205
Compiler Error C3205
11/04/2016
C3205
C3205
802d306e-5ff3-4491-8a22-c5f1c072d005

Compiler Error C3205

argument list for template parameter 'parameter' is missing

A template parameter is missing.

Example

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;
}