Is there any specific reason why has support for designated initializers not been added to g++? Is the reason that C99 standards came late and g++ was developed earlier and later people didn’t care about this issue, or there is some inherent difficulty in implementing designated initializers in the grammar of C++?
Is there any specific reason why has support for designated initializers not been added
Share
As I noted in a comment, G++ doesn’t support C99 standard designated initialisers, but it does support the GNU extension to C90 which allows designated initialisers. So this doesn’t work:
But this does:
This seems to be a bad interaction of co-ordination between the C and C++ standards committees (there is no particularly good reason why C++ doesn’t support the C99 syntax, they just haven’t considered it) and GCC politics (C++ shouldn’t support C99 syntax just because it’s in C99, but it should support GNU extension syntax that achieves exactly the same thing because that’s a GNU extension that can be applied to either language).