Y
Hacker News
new
|
ask
|
show
|
jobs
by
dmh2000
3274 days ago
gcc warning: ISO C++ forbids zero-size array ‘payload’ [-Wpedantic]
clang warning: flexible array members are a C99 feature [-Wc99-extensions]
is this still the case?
1 comments
dpzmick
3274 days ago
Try compiling with c++11 turned on.
link
dmh2000
3274 days ago
I used -std=c++14
link
slrz
3273 days ago
Use -std=gnu++14 then.
link