fb39ca4 / picoc

Automatically exported from code.google.com/p/picoc
0 stars 0 forks source link

Unnamed enums aren't supported #124

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
From Brian Schmalz:

This works fine:

typedef enum SomeEnum {
                STATEA,
                STATEB,
                STATEC
} SomeType;

But this generates an error

typedef enum {
                STATEA,
                STATEB,
                STATEC
} SomeType;

Original issue reported on code.google.com by zik.sale...@gmail.com on 16 Feb 2011 at 8:57

GoogleCodeExporter commented 8 years ago
Also unnamed structs and unions.

Original comment by zik.sale...@gmail.com on 17 Feb 2011 at 7:16

GoogleCodeExporter commented 8 years ago
Done in r554.

Original comment by zik.sale...@gmail.com on 18 Feb 2011 at 3:34