GNOME Bugzilla – Bug 752712
last entry missing in a @name group of typedefs
Last modified: 2017-03-27 13:54:05 UTC
Created attachment 307903 [details] doxygen config file When I run doxygen to create a html output for the following C example, the type UW_16 is missing. example 1: UW_16 is missing in the output ---> ///@name definition of all integer and boolean types as standard ///@{ typedef uint8_t UB__8; ///< 8 bit unsigned data type typedef uint16_t UW_16; ///< 16 bit unsigned data type ///@} <--- example 1 If I insert an empty line before the closing braket, it works fine. example 2: works fine ---> ///@name definition of all integer and boolean types as standard ///@{ typedef uint8_t UB__8; ///< 8 bit unsigned data type typedef uint16_t UW_16; ///< 16 bit unsigned data type ///@} <--- example 2 The same issue does _not_ occur, if it were defines instead of typedefs. Thank you for your consideration.
Created attachment 307904 [details] example 1
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.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).
I tested the changes with the already attached 'example 1'. With doxygen version 1.8.11, the missing typedef is now visible, but it's comment is still missing.
Created attachment 320004 [details] screenshot of output of example1 with doxygen 1.8.11 screenshot of output of example1 with doxygen 1.8.11
Confirmed. The comment was not missing, just shown as a detailed description, because it was seen as a multi-line ///-style comment. Should be fixed in the next GIT update, where I'll treat lines with @} markers specially.
This bug was previously marked ASSIGNED, which means it should be fixed in doxygen version 1.8.12. 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).
I tested with doxygen version 1.8.13 and it works fine. Thank you for your help.