top-complexity: lower max allowed complexity threshold to 90

Down from 100. Also make it show all functions with complexity > 65
(down from 70).

Closes #17689
This commit is contained in:
Daniel Stenberg 2025-06-20 23:31:33 +02:00
parent e3d9675924
commit 84b62696d9
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 = 100;
my $cutoff = 90;
# functions above this complexity level are shown
my $show = 70;
my $show = 65;
my $error = 0;
my %where;