GNOME Bugzilla – Bug 691798
/// is not parsed correctly as doxygen as a special comment block
Last modified: 2013-01-28 11:03:20 UTC
Created attachment 233536 [details] Short project to reproduce the bug We are using something like that (see also attachment...): /////////////////////////////////////////////////////////////////////////// /// brief description of function. Details to the function... there might /// be several lines to describe the function /// /// \param p__nCount Quantity of log entries /// \return Number of log entries accepted /// \sa other log functions nLogNoDetails and nLogNoDetails2 /// \note This is the note section /// \warning This function is globally synchronized... /////////////////////////////////////////////////////////////////////////// virtual int nLog(int p__nCount) = 0; Also, we use JAVADOC_AUTOBRIEF. This worked perfect with on Windows with doxygen version 1.8.1.1, 1.8.1.2, 1.8.2 With version 1.8.3 no class or method documentation is generated, but it is parsed out correctly by STRIP_CODE_COMMENTS of the source browser.
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.8.3.1. 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.
With 1.8.3.1 it works perfect again. Thank you very much!