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 356597 - Link is not generated
Link is not generated
Status: RESOLVED DUPLICATE of bug 342107
Product: doxygen
Classification: Other
Component: documentation
unspecified
Other Linux
: Normal normal
: ---
Assigned To: Dimitri van Heesch
Dimitri van Heesch
Depends on:
Blocks:
 
 
Reported: 2006-09-18 18:07 UTC by bagnara
Modified: 2012-11-18 11:11 UTC
See Also:
GNOME target: ---
GNOME version: ---


Attachments
C++ snippet containing the code that is not documented properly (580 bytes, text/plain)
2006-09-18 18:09 UTC, bagnara
Details
Doxygen configuration file that allows to reproduce the problem (220 bytes, text/plain)
2006-09-18 18:16 UTC, bagnara
Details

Description bagnara 2006-09-18 18:07:08 UTC
Doing

$ doxygen Doxyfile
$ firefox out/html/index.html

it can be seen that a link to void ascii_dump(std::ostream& s) const
is not generated as it should (at least this is how I interpret the manual).
Comment 1 bagnara 2006-09-18 18:09:28 UTC
Created attachment 72992 [details]
C++ snippet containing the code that is not documented properly
Comment 2 bagnara 2006-09-18 18:16:39 UTC
Created attachment 72993 [details]
Doxygen configuration file that allows to reproduce the problem
Comment 3 Dimitri van Heesch 2006-09-18 20:22:27 UTC
Contrary to the documentation, the "const" is needed to create the link, i.e.:

  /*! \brief
    Loads from \p s an ASCII representation (as produced by
    ascii_dump(std::ostream&) const) and sets \p *this accordingly.
    Returns <CODE>true</CODE> if successful, <CODE>false</CODE> otherwise.
  */

This is also mentioned in other bug report, so I'll fix that one and make this a dup.

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