]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
top-complexity: set threshold to 70
authorDaniel Stenberg <daniel@haxx.se>
Thu, 4 Sep 2025 06:32:58 +0000 (08:32 +0200)
committerDaniel Stenberg <daniel@haxx.se>
Thu, 4 Sep 2025 08:06:13 +0000 (10:06 +0200)
Closes #18475

scripts/top-complexity

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