GNOME Bugzilla – Bug 707995
@copydoc not working for const member overloads
Last modified: 2013-12-24 18:59:36 UTC
Created attachment 254817 [details] Sample that repros the problem I find difficulty in both automatic link generation *and* @copydoc when it comes to 'const' overloaded member methods. Example: class foo { public: Object* getObject(); Object const* getObject() const; }; I have JAVADOC_AUTOBRIEF enabled. My documentation for the class above is: class foo { public: /// Some brief documentation. /// @return Returns the object. Object* getObject(); /// @copydoc foo::getObject() const Object const* getObject() const; }; The warning I get from Doxygen is: warning: Found recursive @copybrief or @copydoc relation for argument 'foo::getObject()'. Attached archive has sample code, documentation output (HTML), doxyconfig file, and more. Discussion on the issue with Albert on the mailing list: http://sourceforge.net/mailarchive/message.php?msg_id=31395240
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).