我使用类似以下最小例子的代码:
#include <stdint.h>
constexpr uint8_t size = 0; // sort of global config option
template<typename T = char, uint8_t L = size>
struct A {
T f() {
if constexpr(L > 0) {
return data[0];
}
return T{0};
}
int x = 0;
T data[L];
};
int main() {
A x;
x.f();
}
现在我将编译器(g ++)设置更改为-pedantic并收到以下警告:
ISO C++ forbids zero-size array [-Wpedantic]
这绝对没问题,但我想知道如何防止此消息?
答案 0 :(得分:6)
对于A
:
L == 0
结构
template <typename T>
struct A<T, 0>
{
T f() { return {0}; }
};