From: Daniel Stenberg Date: Fri, 20 Jun 2025 21:31:33 +0000 (+0200) Subject: top-complexity: lower max allowed complexity threshold to 90 X-Git-Tag: rc-8_15_0-1~2 X-Git-Url: http://git.ipfire.org/gitweb/gitweb.cgi?a=commitdiff_plain;h=84b62696d93695cd936b33c7917186df240ee291;p=thirdparty%2Fcurl.git top-complexity: lower max allowed complexity threshold to 90 Down from 100. Also make it show all functions with complexity > 65 (down from 70). Closes #17689 --- diff --git a/scripts/top-complexity b/scripts/top-complexity index 9bd771048f..27c23d2c74 100755 --- a/scripts/top-complexity +++ b/scripts/top-complexity @@ -79,10 +79,10 @@ my %whitelist = ( ); # functions with complexity above this level causes the function to return error -my $cutoff = 100; +my $cutoff = 90; # functions above this complexity level are shown -my $show = 70; +my $show = 65; my $error = 0; my %where;