[FFmpeg-cvslog] r24574 - trunk/tools/patcheck

michael subversion
Wed Jul 28 17:03:05 CEST 2010


Author: michael
Date: Wed Jul 28 17:03:05 2010
New Revision: 24574

Log:
Warn about "/** text" comments.

Modified:
   trunk/tools/patcheck

Modified: trunk/tools/patcheck
==============================================================================
--- trunk/tools/patcheck	Wed Jul 28 14:08:26 2010	(r24573)
+++ trunk/tools/patcheck	Wed Jul 28 17:03:05 2010	(r24574)
@@ -51,6 +51,7 @@ hiegrep 'for *\( *'"$ERE_PRITYP"' '  'no
 hiegrep '(static|inline|const) *\1'  'duplicate word' $*
 hiegrep 'INIT_VLC_USE_STATIC' 'forbidden ancient vlc type' $*
 hiegrep '=[-+\*\&] ' 'looks like compound assignment' $*
+hiegrep2 '/\*\* *[a-zA-Z0-9].*' '\*/' 'Inconsistently formatted doxygen comment' $*
 
 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' $*
 



More information about the ffmpeg-cvslog mailing list