Hello,

It seems to be common to forget to put extra star (/**<) or slash
(///<) in Doxygen trailing comments.  The attached patch warns in
these cases:

+struct a {
+  int x; //< comment // expected-warning {{not a Doxygen member comment}}
+  int y; /*< comment */ // expected-warning {{not a Doxygen member comment}}
+};

Please review.

I have fixed a few of these in LLVM and Clang manually a while ago. [1] [2]

[1] 
http://lists.cs.uiuc.edu/pipermail/cfe-commits/Week-of-Mon-20120604/058729.html
[2] 
http://lists.cs.uiuc.edu/pipermail/llvm-commits/Week-of-Mon-20120604/144316.html

Dmitri

-- 
main(i,j){for(i=2;;i++){for(j=2;j<i;j++){if(!(i%j)){j=0;break;}}if
(j){printf("%d\n",i);}}} /*Dmitri Gribenko <[email protected]>*/

Attachment: warn-almost-doxygen-trailing-comment.patch
Description: Binary data

_______________________________________________
cfe-commits mailing list
[email protected]
http://lists.cs.uiuc.edu/mailman/listinfo/cfe-commits

Reply via email to