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 577464 - typdef for std types with comparator specification confuses Doxygen
typdef for std types with comparator specification confuses Doxygen
Status: RESOLVED DUPLICATE of bug 560512
Product: doxygen
Classification: Other
Component: general
1.5.6
Other All
: Normal normal
: ---
Assigned To: Dimitri van Heesch
Dimitri van Heesch
Depends on:
Blocks:
 
 
Reported: 2009-03-31 14:23 UTC by John Sustersic
Modified: 2009-04-03 14:35 UTC
See Also:
GNOME target: ---
GNOME version: ---



Description John Sustersic 2009-03-31 14:23:19 UTC
Please describe the problem:
Using Doxygen with built-in stl support enabled, a problem was identified when having a class with a typdef that explicitly included the comparator:

typedef std::set<double, less<double>> mySet;

confused Doxygen, dropping this typedef and much of the subsequent member documentations from the final output.

Changing this to:
typedef std::set<double> mySet;

Works fine.

Steps to reproduce:
1. Write a class with a public typdef member as above with the comparator.
2. Run doxygen
3. view results

Actual results:
Documentation is incorrect

Expected results:
Correct identification of the typedef and functions refering to the typedef type.

Does this happen every time?
Yes

Other information:
Thanks!
Comment 1 Dimitri van Heesch 2009-04-03 14:35:42 UTC

*** This bug has been marked as a duplicate of 560512 ***