For this data structure:
struct some_person {
std::string name;
unsigned birth_year;
int data[];
};
I am getting this error:
error: type 'some_person' decomposes into 3 elements, but only 2 names were provided
Normal array members work fine.
Do you think it would be possible to support these?