]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
top-complexity: set cutoff level to 80
authorDaniel Stenberg <daniel@haxx.se>
Tue, 29 Jul 2025 14:17:42 +0000 (16:17 +0200)
committerDaniel Stenberg <daniel@haxx.se>
Wed, 30 Jul 2025 07:13:50 +0000 (09:13 +0200)
Closes #18080

scripts/top-complexity

index a5e3bc13b881692741bc1fec042b4949074b7c8f..52a463f6abd024cc5c7a9f31a89f7a7223c1366f 100755 (executable)
@@ -79,7 +79,7 @@ my %whitelist = (
     );
 
 # functions with complexity above this level causes the function to return error
-my $cutoff = 90;
+my $cutoff = 80;
 
 # functions above this complexity level are shown
 my $show = 65;