After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 690341 - First enum erroneously named in C++11 strongly typed anonymous enumerations
First enum erroneously named in C++11 strongly typed anonymous enumerations
Status: RESOLVED FIXED
Product: doxygen
Classification: Other
Component: general
1.8.2
Other Mac OS
: Normal normal
: ---
Assigned To: Dimitri van Heesch
Dimitri van Heesch
Depends on:
Blocks:
 
 
Reported: 2012-12-17 12:28 UTC by Chris Howard
Modified: 2012-12-26 16:09 UTC
See Also:
GNOME target: ---
GNOME version: ---



Description Chris Howard 2012-12-17 12:28:25 UTC
Doxygen replaces the name of the first enumeration in a C++11 strongly typed anonymous enumeration with the the string "__pad0__". This behavior can be reproduced by attempting to generate HTML documentation for the following enumeration:

enum: unsigned int
{
    FOO,
    BAR
};

The documentation for this enumeration will replace FOO with __pad0__. Please note this behavior does not seem to occur in strongly typed named enumerations. For example, the following will generate correct documentation:

enum Foo: unsigned int
{
    BAR,
    BAZ
};

This behavior has been tested in Doxygen version 1.8.2 on Mac OS X.
Comment 1 Dimitri van Heesch 2012-12-17 14:48:26 UTC
Confirmed. Should be fixed in the next subversion update.
Comment 2 Dimitri van Heesch 2012-12-26 16:09:28 UTC
This bug was previously marked ASSIGNED, which means it should be fixed in
doxygen version 1.8.3. Please verify if this is indeed the case. Reopen the
bug if you think it is not fixed and please include any additional information
that you think can be relevant.