From: Daniel Stenberg Date: Tue, 29 Jul 2025 14:17:42 +0000 (+0200) Subject: top-complexity: set cutoff level to 80 X-Git-Url: http://git.ipfire.org/gitweb/gitweb.cgi?a=commitdiff_plain;h=4b1a5fe43622a6c6e904f9f9d127b41ca6c93cfd;p=thirdparty%2Fcurl.git top-complexity: set cutoff level to 80 Closes #18080 --- diff --git a/scripts/top-complexity b/scripts/top-complexity index a5e3bc13b8..52a463f6ab 100755 --- a/scripts/top-complexity +++ b/scripts/top-complexity @@ -79,7 +79,7 @@ my %whitelist = ( ); # functions with complexity above this level causes the function to return error -my $cutoff = 90; +my $cutoff = 80; # functions above this complexity level are shown my $show = 65;