GNOME Bugzilla – Bug 626799
Documentation using //! not generated correctly
Last modified: 2010-08-14 14:12:13 UTC
Description: I'm using long time //! documentation comments and it worked almost fine. Now with version 1.7.1 the document generation is broken. Doxygen don't generate detailed section and everything is in @brief section including the //! comments. Solution: Parse correctly //! comments. Example (C++): //! @brief My class. //! //! My class provides interaction between A and B. class MyClass { } The documentation generated: <brief section> My class. //! //! My class provides interaction between A and B. <detailed section> NONE
I have not been able to reproduce the problem with the example provided. Can you please attach a self-contained example (source+config file in a tar or zip) for which you verified it contains the problem?
Created attachment 167817 [details] Doxygen input / output + configuration
I added an attachment, there is simple input file, doxygen configuration I'm using and the output generated by doxygen. Click to CLASSES. Thanks for your fast reply
Thanks for the example. The problem seems to be related to the MULTILINE_CPP_IS_BRIEF setting.
*** This bug has been marked as a duplicate of bug 625952 ***