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

Try compiling with c++11 turned on.
I used -std=c++14
Use -std=gnu++14 then.