bradfordelliott / shorte

The documentation language
0 stars 0 forks source link

Issue with typedef parsing #80

Open bradfordelliott opened 10 years ago

bradfordelliott commented 10 years ago

This doesn't currently work:

typedef struct
{
    /** TBD */
    cs_uint16 line_pfd_initialized;

    /** TBD2 */
    int blah
}my_struct;

/** This typedef doesn't work. It should be able to figure out that it references the first */
typedef my_struct my_struct2;