top-complexity: set cutoff level to 80

Closes #18080
This commit is contained in:
Daniel Stenberg 2025-07-29 16:17:42 +02:00
parent d7918861d1
commit 4b1a5fe436
No known key found for this signature in database
GPG key ID: 5CC908FDB71E12C2

View file

@ -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;