컴파일러 오류 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;
}