自动作为模板参数

时间:2015-04-12 14:28:46

标签: c++ templates auto template-deduction

template<typename> struct CL{};

CL<char> fnc();

int main()
{
    CL<auto> cl=fnc(); //error
}

为什么它不正确?将自动推理为char的问题是什么?

0 个答案:

没有答案