doxygen - Put dot in brief description -
i got sample code. want dot in brief comment.
const int myvar = 1; //!< doxygen long brief\. //! brief sentence two.
i escape dot told in doxygen manual. not work. first line brief, second detailed. bug?
note: multiline_cpp_is_brief
, qt_autobrief
yes
! use latest version (1.8.9.1).
the doxygen manual says
if enable option , want put dot in middle of sentence without ending it, should put backslash , space after it.
your backslash ist on wrong side of dot, , manual has taken literally, meaning space required after backslash.
the following should work (without curly braced part):
const int myvar = 1; //!< doxygen long brief.\ {← space here!} //! brief sentence two.
Comments
Post a Comment