Browse code

Issue a warning when fed with misformatted one-line doxygen comments.

Originally committed as revision 24660 to svn://svn.ffmpeg.org/ffmpeg/trunk

Benoit Fouet authored on 2010/08/02 16:23:47
Showing 1 changed files
... ...
@@ -52,6 +52,7 @@ hiegrep '(static|inline|const) *\1'  'duplicate word' $*
52 52
 hiegrep 'INIT_VLC_USE_STATIC' 'forbidden ancient vlc type' $*
53 53
 hiegrep '=[-+\*\&] ' 'looks like compound assignment' $*
54 54
 hiegrep2 '/\*\* *[a-zA-Z0-9].*' '\*/' 'Inconsistently formatted doxygen comment' $*
55
+hiegrep '; */\*\*[^<]' 'Misformatted doxygen comment' $*
55 56
 
56 57
 hiegrep2 '(int|unsigned|static|void)[a-zA-Z0-9 _]*(init|end)[a-zA-Z0-9 _]*\(.*[^;]$' '(av_cold|:\+[^a-zA-Z_])' 'These functions may need av_cold, please review the whole patch for similar functions needing av_cold' $*
57 58