You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fix typedefed anonymous enumerations being documneted twice.
When an enumeration was contained in a typedef it was being documented
once as the type and once as anonymous. this has been resolved to only
be documented as the typedef.
For example the following:
typedef enum {
SOME_ENUM_0,
SOME_ENUM_1,
} the_typedef_name;
Used to show up as:
enum the_typedef_name
SOME_ENUM_0
SOME_ENUM_1
enum anon_<file>_<######>
SOME_ENUM_0
SOME_ENUM_1
0 commit comments