top-complexity: set threshold to 70

Closes #18475
This commit is contained in:
Daniel Stenberg 2025-09-04 08:32:58 +02:00
parent 1edead4360
commit f333a73892
No known key found for this signature in database
GPG key ID: 5CC908FDB71E12C2

View file

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