diff options
author | Diego Biurrun <diego@biurrun.de> | 2011-11-08 15:01:47 +0100 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2011-12-04 23:49:48 +0100 |
commit | def5dc1260e99cf7f6e99747013307a152bed801 (patch) | |
tree | 8d224bc04671025cace22f68324605154bc7463f /tools | |
parent | dc6d0430503ecd7ed0d81276f977b26b4c4bd916 (diff) | |
download | ffmpeg-def5dc1260e99cf7f6e99747013307a152bed801.tar.gz |
doc: document preferred Doxygen syntax and make patcheck detect it
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/patcheck | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/patcheck b/tools/patcheck index 19faf47b1d..285496d6e6 100755 --- a/tools/patcheck +++ b/tools/patcheck @@ -55,6 +55,7 @@ hiegrep 'INIT_VLC_USE_STATIC' 'forbidden ancient vlc type' $* hiegrep '=[-+\*\&] ' 'looks like compound assignment' $* hiegrep2 '/\*\* *[a-zA-Z0-9].*' '\*/' 'Inconsistently formatted doxygen comment' $* hiegrep '; */\*\*[^<]' 'Misformatted doxygen comment' $* +hiegrep '//!|/\*!' 'inconsistent doxygen syntax' $* 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' $* |