显式模板实例化语法

时间:2016-04-25 08:31:52

标签: c++ templates explicit-instantiation

显式实例化声明是否需要“class”关键字?

template <class> class CL{};

template class CL<char>;  //OK
template CL<int>; //without "class"; OK for VC and clang, wrong for gcc

0 个答案:

没有答案