From 4b1a5fe43622a6c6e904f9f9d127b41ca6c93cfd Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Tue, 29 Jul 2025 16:17:42 +0200 Subject: [PATCH] top-complexity: set cutoff level to 80 Closes #18080 --- scripts/top-complexity | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/top-complexity b/scripts/top-complexity index a5e3bc13b8..52a463f6ab 100755 --- a/scripts/top-complexity +++ b/scripts/top-complexity @@ -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; -- 2.47.2