top-complexity: maximum accepted set to 72

Down from 80. Show all functions above 60.

Closes #18354
This commit is contained in:
Daniel Stenberg 2025-08-22 13:38:57 +02:00
parent 33572b851e
commit f5ee566dbc
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 = 80;
my $cutoff = 72;
# functions above this complexity level are shown
my $show = 65;
my $show = 60;
my $error = 0;
my %where;