From: Daniel Stenberg Date: Fri, 22 Aug 2025 11:38:57 +0000 (+0200) Subject: top-complexity: maximum accepted set to 72 X-Git-Tag: curl-8_16_0~121 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=f5ee566dbca35269b6fc31c13a2a54601b5fa0ca;p=thirdparty%2Fcurl.git top-complexity: maximum accepted set to 72 Down from 80. Show all functions above 60. Closes #18354 --- diff --git a/scripts/top-complexity b/scripts/top-complexity index 52a463f6ab..764351127f 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 = 80; +my $cutoff = 72; # functions above this complexity level are shown -my $show = 65; +my $show = 60; my $error = 0; my %where;