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 700740 - Doxygen does not create links on C++ 11 style enum classes
Doxygen does not create links on C++ 11 style enum classes
Status: RESOLVED FIXED
Product: doxygen
Classification: Other
Component: general
1.8.3.1
Other Windows
: Normal normal
: ---
Assigned To: Dimitri van Heesch
Dimitri van Heesch
Depends on:
Blocks:
 
 
Reported: 2013-05-20 19:38 UTC by lmorsino
Modified: 2013-08-23 15:04 UTC
See Also:
GNOME target: ---
GNOME version: ---


Attachments
doxygen sample project (22.69 KB, application/x-zip-compressed)
2013-05-20 19:38 UTC, lmorsino
Details

Description lmorsino 2013-05-20 19:38:09 UTC
Created attachment 244856 [details]
doxygen sample project

If you are writing some piece text that references a C++ 11 enum class, doxygen will not create a link on that reference (but it will if you use the old-style enum. For example:

class Glyph {
public:
    enum class Default {
        Circle,         //!< An unfilled circle.
	CircleWithDot,  //!< An unfilled circle with a dot in the center.
	CircleWithPlus,	//!< An unfilled circle with a plus sign in the center.



If I type 

Glyph::Default::Circle

no link is created. But if I type the old style

Glpyh::Circle

the link is created. I think it should create a link on the new style enum class. See sample project attachment.
Comment 1 Dimitri van Heesch 2013-06-15 14:49:05 UTC
Confirmed. Should be fixed in the next GIT update.
Comment 2 Dimitri van Heesch 2013-08-23 15:04:45 UTC
This bug was previously marked ASSIGNED, which means it should be fixed in
doxygen version 1.8.5. 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.