GNOME Bugzilla – Bug 707985
Strange output when : appended to an parameter description
Last modified: 2013-12-29 17:50:06 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)
Confirmed. Should be fixed in the next GIT update.
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).
The : has been completely removed now