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 707985 - Strange output when : appended to an parameter description
Strange output when : appended to an parameter description
Status: VERIFIED FIXED
Product: doxygen
Classification: Other
Component: general
1.8.5
Other Windows
: Normal normal
: ---
Assigned To: Dimitri van Heesch
Dimitri van Heesch
Depends on:
Blocks:
 
 
Reported: 2013-09-12 16:59 UTC by albert
Modified: 2013-12-29 17:50 UTC
See Also:
GNOME target: ---
GNOME version: ---



Description albert 2013-09-12 16:59:05 UTC
When we have the following source code:

/// docu of class foo
class foo
{
public:
  /// @param arg1: this is the version with colon directly attached to arg1
  void fie1(int arg1);
  /// @param arg1 : this is the version with colon separated from arg1
  void fie2(int arg1);
};

The result is that in the parameter documentation for fie1 the argument is given as:
arg1,:
but no warning is given, so it looks like doxygen sees arg1 as the argument. Furthermore it is strange that a ',' is added.
(A default Doxyfile is used)
Comment 1 Dimitri van Heesch 2013-10-13 09:40:21 UTC
Confirmed. Should be fixed in the next GIT update.
Comment 2 Dimitri van Heesch 2013-12-24 19:00:05 UTC
This bug was previously marked ASSIGNED, which means it should be fixed in
doxygen version 1.8.6. 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 (preferrably in the form of a self-contained example).
Comment 3 albert 2013-12-29 17:50:06 UTC
The : has been completely removed now