GNOME Bugzilla – Bug 460127
parsing nested union/structs confuses public/private state
Last modified: 2007-09-22 19:54:58 UTC
struct _MyObject { GObject object; /*< public >*/ gint a; /*< private >*/ union { struct { gint b; } ABI; gpointer _reserved[GST_PADDING + 0]; } abidata; }; yields an entry in -undocumented.txt MyObject (_reserved)
This must be in gtkdoc-common.pl::ParseStructDeclaration
Fixed together with other fixes.