Doxygen including trailing slashes after one line @brief comment -


i'm documenting code using long sets of slashes make them stand out in code.

////////////////////////////////////////////////////////////////////// /// @brief simple test struct. ////////////////////////////////////////////////////////////////////// struct foo {   //////////////////////////////////////////////////////////////////////   /// @brief function single line brief demonstrate issue.   //////////////////////////////////////////////////////////////////////   void a() {} }; 

i've built doxygen fresh subversion checkout , when it's run on code above line of slashes @ end of each block included in brief description. problem doesn't exist in doxygen 1.8.1 that's installed on system, appears bug in doxygen trunk.

i've submitted bug 700345 doxygen project, interested in taking shot @ fixing myself.

i'm having trouble finding code doxygen uses detect end of comment blocks. have experience working part of code , have moment point me in right direction?

fyi, quick solution add blank comment line after @brief. i'm not interested in going through ~100k lines of code identify problematic comment blocks , add blank line (yet).

see proposed fix attached bug report submitted.


Comments

Popular posts from this blog

jquery - How can I dynamically add a browser tab? -

node.js - Getting the socket id,user id pair of a logged in user(s) -

keyboard - C++ GetAsyncKeyState alternative -