Linked to #35
In C (it is not the case in C++), it is customary to do
typedef struct stuff_ {
int a;
} stuff;
If doxide encounter such construct, it seems to be creating a page for struct stuff_ and forgets about the typedef. It would probably be possible to automatically duplicate this info and create an corresponding entry for the corresponding typedef structy stuff_ stuff.
However, that's a C specific stuff, so I understand if it is not a priority :)
Linked to #35
In C (it is not the case in C++), it is customary to do
If
doxideencounter such construct, it seems to be creating a page forstruct stuff_and forgets about thetypedef. It would probably be possible to automatically duplicate this info and create an corresponding entry for the correspondingtypedef structy stuff_ stuff.However, that's a C specific stuff, so I understand if it is not a priority :)