Why is this code invalid?
typedef int INT;
unsigned INT a=6;
whereas the following code is valid
typedef int INT;
static INT a=1;
?
As per my understanding unsigned int is not a "simple type specifier" and so the code is ill-formed. I am not sure though.
Can anyone point to the relevant section of the Standard which makes the first code invalid(and the second code valid)?
EDIT
Although Johannes Schaub's answer seemed to be correct and to the point(he had deleted his answer BTW) I accepted James Curran's answer for its correctness and preciseness.
typedef unsigned int UINT;might make more sense, though.... – JAB Jul 20 '10 at 13:40language-lawyer. – Prasoon Saurav Jul 20 '10 at 13:42typedef int INT;considered harmful. Along with other ridiculous uses oftypedef. In short,typedef int tokenid;ortypedef int audiosample;make sense;typedef int INT;andtypedef int gint;are simply pollution of your codebase with crap that makes it harder to reuse. – R.. Jul 20 '10 at 13:53INTwithtokenidbefore answering his question. – Dennis Zickefoose Jul 20 '10 at 16:15