]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
top-complexity: maximum accepted set to 72
authorDaniel Stenberg <daniel@haxx.se>
Fri, 22 Aug 2025 11:38:57 +0000 (13:38 +0200)
committerDaniel Stenberg <daniel@haxx.se>
Fri, 22 Aug 2025 14:22:36 +0000 (16:22 +0200)
Down from 80. Show all functions above 60.

Closes #18354

scripts/top-complexity

index 52a463f6abd024cc5c7a9f31a89f7a7223c1366f..764351127ff8f5decb22c4aef744cd76e4ec3899 100755 (executable)
@@ -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;