aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2023-09-08 14:47:49 +0200
committerAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2023-09-11 00:26:34 +0200
commit95e876f069e9c5ed268ddcdeb06cc5e056c5e63c (patch)
tree1ab57bcb8cd56aa38ea303aab61f227fd1c2a5cb
parent7b98a1875d9d0229d647dcabd0bba5f97b6c4975 (diff)
downloadffmpeg-95e876f069e9c5ed268ddcdeb06cc5e056c5e63c.tar.gz
tools/patcheck: Remove test for ancient INIT_VLC_USE_STATIC
The flag has been removed long ago. Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
-rwxr-xr-xtools/patcheck1
1 files changed, 0 insertions, 1 deletions
diff --git a/tools/patcheck b/tools/patcheck
index fe52938f29..76ca408b03 100755
--- a/tools/patcheck
+++ b/tools/patcheck
@@ -51,7 +51,6 @@ hiegrep2 '\b_[a-zA-Z0-9_]{1,}' '__(asm|attribute)([^a-zA-Z0-9]|$)' 'reserved ide
hiegrep '//[-/<\* ]*$' 'empty comment' $*
hiegrep '/\*[-<\* ]*\*/' 'empty comment' $*
hiegrep '(static|inline|const) *\1[^_a-zA-Z]' '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' $*
hiegrep '; */\*\*[^<]' 'Misformatted doxygen comment' $*