长度为1的数组的零大小数组警告

时间:2017-07-29 16:39:21

标签: c++ arrays templates

我有这段代码:

null === undefined

在g ++ 5.1.0下编译我收到以下错误:

template<char... c>
struct StaticStringConst
{
    const char cstr[] = {c...,0};
};

在我看来,我的阵列实际上从来都不是零......所以这里发生了什么?

0 个答案:

没有答案