From: Daniel Stenberg Date: Thu, 4 Sep 2025 06:32:58 +0000 (+0200) Subject: top-complexity: set threshold to 70 X-Git-Tag: curl-8_16_0~28 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f333a73892d2bc42d7cde12d969025b424884864;p=thirdparty%2Fcurl.git top-complexity: set threshold to 70 Closes #18475 --- diff --git a/scripts/top-complexity b/scripts/top-complexity index 764351127f..414adaf56c 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 = 72; +my $cutoff = 70; # functions above this complexity level are shown -my $show = 60; +my $show = 57; my $error = 0; my %where;