The C and Objective-C compilers no longer accept the "Naming Types" extension (typedef foo = bar); it was already unavailable in C++.
Code which uses it will need to be changed to use the "typeof" extension instead: typedef typeof(bar) foo.
(We have removed this extension without a period of deprecation because it has caused the compiler to crash since version 3.0 and no one noticed until very recently. Thus we conclude it is not in widespread use.)
[^] # Re: GCC 3.2.3 est sorti
Posté par tuan kuranes (site web personnel) . En réponse à la dépêche GCC 3.2.3 est sorti. Évalué à 10.
The C and Objective-C compilers no longer accept the "Naming Types" extension (typedef foo = bar); it was already unavailable in C++.
Code which uses it will need to be changed to use the "typeof" extension instead: typedef typeof(bar) foo.
(We have removed this extension without a period of deprecation because it has caused the compiler to crash since version 3.0 and no one noticed until very recently. Thus we conclude it is not in widespread use.)
Chez moi, ca plantait pas...
Ils ont la conclusion rapide en tout cas !!