GNOME Bugzilla – Bug 606104
Deprecated list: Wrong prefix '<globalScope>::' for global functions
Last modified: 2015-12-30 10:20:10 UTC
For global functions the prefix '<globalScope>::' is used in the deprecated list. The prefix is confusing, it was not present in version 1.6.1 For the example below the Doxygen 1.6.2 deprecated list is: Member <globalScope>::foo (void) This function is deprecated. For Doxygen 1.6.1 and version before the list is: Member foo This function is deprecated. Example: 1. Create a file test.h with this contents: /** \defgroup test Test ** @{ **/ /** Just a test. ** ** @deprecated This function is deprecated. **/ int foo(void); // @} 2. Create an default configuration file using: doxygen -g 3. In Doxfile, set: INPUT = test.h 4. Run doxygen: doxygen
Confirmed. Should be fixed in the next subversion update.
This bug was previously marked ASSIGNED, which means it should be fixed in doxygen version 1.6.3. 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.
The problem now appears in version 1.8.9.1. Using the example given above we now get: html/deprecated.html: Deprecated List globalScope> Member foo (void) This function is deprecated. There is an 'globalScope>' added.
I've just pushed a proposed solution to github (pull request 418) This is a regression from Bug 740218 - Full scope needed when making link inside cross-referenced section [with test case]
Code has been integrated into github (December 10, 2015. git ID b103d9056cf20cf856ed5ca114950dab642b3f6f)
This bug was previously marked ASSIGNED, which means it should be fixed in doxygen version 1.8.11. 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 (preferably in the form of a self-contained example).