I have this strange issue:
When I create an enum like this:
typedef enum {
kParcelStatusInTransit,
kParcelStatusArrived,
kParcelStatusDelivered,
kParcelStatusUnknown
} ParcelStatus;
I get an error: expected identifier before numeric constant
When I add even the smallest change to the members name, I get no error:
typedef enum {
kChangeParcelStatusInTransit,
kChangeParcelStatusArrived,
kChangeParcelStatusDelivered,
kChangeParcelStatusUnknown
} ParcelStatus;
How is this possible? What numeric constant is the error talking about? It makes no sense to me...
#defined one of those identifiers somewhere? If so, the preprocessor would replace it with its value and the compiler would see that instead. – ughoavgfhw Jul 19 '11 at 23:07enumin other header, I used#definesomewhere else. The syntax coloring in xCode didn't help so I got stuck. Thanks man! – Valentin Radu Jul 19 '11 at 23:13