Reputation: 2973
What are the most useful proposed features of C1X so far? And what support for them is there in current compilers?
Upvotes: 6
Views: 683
Reputation: 4313
Anonymous structs & unions are helpful, and I already use them in GCC (with -std=gnu99
).
Improved Unicode support is also long-overdue; though I’m not sure if people will switch to the C1x way from current Unicode libs.
Upvotes: 2
Reputation: 106167
Personally, I have a lot of use for the _Align( )
specifier and alignof
operator. The _Align
functionality is already pretty well supported in a lot of compilers (__attribute__((aligned( )))
in GCC, for example), but having a standardized syntax for reasoning about alignment is a welcome addition.
Upvotes: 2